Skip to content

Commit

Permalink
Remove status from exit calls
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenpi authored and staticfloat committed Nov 6, 2018
1 parent 498ff15 commit 0cd3ade
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ light-source-dist: light-source-dist.tmp
# to the source directory.
DIRNAME=julia-$(JULIA_COMMIT); \
sed -e "s_.*_$$DIRNAME/&_" light-source-dist.tmp > light-source-dist.tmp1; \
ln -s . $$DIRNAME || exit 1; \
ln -s . $$DIRNAME || exit; \
tar -cz --no-recursion -T light-source-dist.tmp1 -f julia-$(JULIA_VERSION)_$(JULIA_COMMIT).tar.gz; \
rm -v $$DIRNAME

Expand All @@ -542,7 +542,7 @@ full-source-dist: light-source-dist.tmp
# to the source directory.
DIRNAME=julia-$(JULIA_COMMIT); \
sed -e "s_.*_$$DIRNAME/&_" full-source-dist.tmp > full-source-dist.tmp1; \
ln -s . $$DIRNAME || exit 1; \
ln -s . $$DIRNAME || exit; \
tar -cz --no-recursion -T full-source-dist.tmp1 -f julia-$(JULIA_VERSION)_$(JULIA_COMMIT)-full.tar.gz; \
rm -v $$DIRNAME

Expand Down

0 comments on commit 0cd3ade

Please sign in to comment.