diff options
author | Tharre <tharre3@gmail.com> | 2014-09-03 16:11:46 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2014-09-03 16:11:46 +0200 |
commit | a35218e77e279c3a856f35e15fcd95bcb8444e57 (patch) | |
tree | 6f8a522e522156b6b4b2f5358103d6d6046d9073 | |
parent | 08e8afe93796d6682bbc46cb4acd5fb615b1785c (diff) | |
download | redo-a35218e77e279c3a856f35e15fcd95bcb8444e57.tar.gz redo-a35218e77e279c3a856f35e15fcd95bcb8444e57.tar.xz redo-a35218e77e279c3a856f35e15fcd95bcb8444e57.zip |
Fix regression caused by 5e5e7e6
We need to use the source operator on the CC script as if we don't
bad return codes won't get forwarded and the script won't get aborted.
-rw-r--r-- | out/default.o.do | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/out/default.o.do b/out/default.o.do index 7843e14..d48bdd1 100644 --- a/out/default.o.do +++ b/out/default.o.do @@ -1,2 +1,2 @@ redo-ifchange CC -./CC "$@" +. ./CC "$@" |