Colin Watson has proposed merging ~cjwatson/launchpad:ensure-sourcecode-directory into launchpad:master.
Commit message: Ensure that the sourcecode directory exists Requested reviews: Launchpad code reviewers (launchpad-reviewers) For more details, see: https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/409730 Since the last file in `sourcecode/` was removed (in 27c3b86f17), `rocketfuel-get` called from a `rocketfuel-setup` run no longer automatically symlinks dependencies into the new Launchpad clone, because it looks for directories with `sourcecode` subdirectories as targets. Add a harmless file there so that `git` creates the containing directory. -- Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:ensure-sourcecode-directory into launchpad:master.
diff --git a/.gitignore b/.gitignore index 6576f52..6cd08b9 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,6 @@ version-info.py logs/* +* -sourcecode/* /botmaster /tags database/replication/lpslon_*.log diff --git a/sourcecode/.gitignore b/sourcecode/.gitignore new file mode 100644 index 0000000..ef0a7b8 --- /dev/null +++ b/sourcecode/.gitignore @@ -0,0 +1,4 @@ +brz-builder +brz-loom +difftacular +loggerhead
_______________________________________________ Mailing list: https://launchpad.net/~launchpad-reviewers Post to : [email protected] Unsubscribe : https://launchpad.net/~launchpad-reviewers More help : https://help.launchpad.net/ListHelp

