diff options
author | Leah Neukirchen <leah@vuxu.org> | 2021-02-07 15:38:44 +0100 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2021-02-07 15:38:44 +0100 |
commit | 707dc49c57354137ef1aa431c4eb7e8af91c402a (patch) | |
tree | 420a30d0fee461933e0fbabe942f59f286e3e581 | |
parent | c672fa29b8121dd34260c37ad173c82192509e93 (diff) | |
download | redo-c-707dc49c57354137ef1aa431c4eb7e8af91c402a.tar.gz redo-c-707dc49c57354137ef1aa431c4eb7e8af91c402a.tar.xz redo-c-707dc49c57354137ef1aa431c4eb7e8af91c402a.zip |
bootstrap.sh: fix from clean build
-rwxr-xr-x | bootstrap.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index 58178c3..a8a311e 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,10 +1,13 @@ #!/bin/sh # bootstrap script + ( alias redo-ifchange=: set -- redo redo redo set -ex -. redo.do +. ./redo.do ) -PATH=$PWD:$PATH redo -f all +export PATH=$PWD:$PATH +redo -f links +redo -f all |