Skip to content

Commit

Permalink
Add correct entries to '.gitignore' (#427)
Browse files Browse the repository at this point in the history
Adds correct entries to '.gitignore' fixes #422
  • Loading branch information
eltrufas authored and ivotron committed Jul 30, 2018
1 parent ef6816b commit 42f44a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions ci/test-run.sh
Expand Up @@ -65,7 +65,7 @@ test ! -f pipelines/mypipetwo/$output_dir/setup.sh.out
test ! -f pipelines/mypipethree/$output_dir/setup.sh.err
test ! -f pipelines/mypipethree/$output_dir/setup.sh.out

git clean -df
git clean -dxf

git commit --allow-empty -m "popper:whitelist[mypipeone,mypipetwo] this is a test"

Expand All @@ -78,7 +78,7 @@ test -f pipelines/mypipetwo/$output_dir/setup.sh.out
test ! -f pipelines/mypipethree/$output_dir/setup.sh.err
test ! -f pipelines/mypipethree/$output_dir/setup.sh.out

git clean -df
git clean -dxf

git commit --allow-empty -m "popper:skip[mypipeone] this is a test"

Expand All @@ -91,7 +91,7 @@ test -f pipelines/mypipetwo/$output_dir/setup.sh.out
test -f pipelines/mypipethree/$output_dir/setup.sh.err
test -f pipelines/mypipethree/$output_dir/setup.sh.out

git clean -df
git clean -dxf

git commit --allow-empty -m "popper:skip[mypipeone,mypipetwo] this is a test"

Expand Down
3 changes: 1 addition & 2 deletions cli/popper/commands/cmd_init.py
Expand Up @@ -132,8 +132,7 @@ def initialize_repo(project_root):

with open(os.path.join(project_root, '.gitignore'), 'a') as f:
f.write('.cache\n')
f.write('popper_logs\n')
f.write('popper_status\n')
f.write('popper\n')

pu.info('Popperized repository ' + project_root, fg='blue', bold=True)

Expand Down

0 comments on commit 42f44a5

Please sign in to comment.