Pass down args to bootstrap

If bootstrap was called manually, then pass down args. E.g.  `yadm bootstrap arg1 arg2 arg3`
This commit is contained in:
Andrey G 2023-12-19 18:51:17 -05:00 committed by GitHub
parent 0a5e7aa353
commit 2f8f34f3c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
yadm
View File

@ -754,7 +754,7 @@ function bootstrap() {
unset GIT_DIR
echo "Executing $YADM_BOOTSTRAP"
exec "$YADM_BOOTSTRAP"
exec "$YADM_BOOTSTRAP" "$@"
}