run bash instead of executing the script directly
This commit is contained in:
parent
03542ad2a9
commit
daf3fd37f9
1 changed files with 5 additions and 5 deletions
10
.drone.yml
10
.drone.yml
|
@ -12,13 +12,13 @@ steps:
|
|||
- name: Update minecraft
|
||||
image: nixery.dev/shell/curl/jq
|
||||
commands:
|
||||
- (cd minecraft && ./update.sh)
|
||||
- (cd minecraft && bash ./update.sh)
|
||||
depends_on:
|
||||
- Update flake
|
||||
- name: Update mastodon-glitch
|
||||
image: nixery.dev/shell/bundix/yarn2nix/yarn/nix-prefetch-git/jq
|
||||
commands:
|
||||
- (cd mastodon && ./update.sh)
|
||||
- (cd mastodon && bash ./update.sh)
|
||||
environment:
|
||||
USER: nobody
|
||||
depends_on:
|
||||
|
@ -26,7 +26,7 @@ steps:
|
|||
- name: Update matrix-media-repo
|
||||
image: nixery.dev/shell/nix-prefetch-git/jq
|
||||
commands:
|
||||
- (cd matrix/matrix-media-repo && ./update.sh)
|
||||
- (cd matrix/matrix-media-repo && bash ./update.sh)
|
||||
environment:
|
||||
USER: nobody
|
||||
depends_on:
|
||||
|
@ -34,7 +34,7 @@ steps:
|
|||
- name: Update mautrix-whatsapp
|
||||
image: nixery.dev/shell/nix-prefetch-git/jq
|
||||
commands:
|
||||
- (cd matrix/mautrix-whatsapp && ./update.sh)
|
||||
- (cd matrix/mautrix-whatsapp && bash ./update.sh)
|
||||
environment:
|
||||
USER: nobody
|
||||
depends_on:
|
||||
|
@ -42,7 +42,7 @@ steps:
|
|||
- name: Update art
|
||||
image: nixery.dev/shell/nix-prefetch-git/jq
|
||||
commands:
|
||||
- (cd art && ./update.sh)
|
||||
- (cd art && bash ./update.sh)
|
||||
environment:
|
||||
USER: nobody
|
||||
depends_on:
|
||||
|
|
Reference in a new issue