mirror of
https://github.com/LemmyNet/lemmy
synced 2024-11-10 06:54:12 +00:00
Add shebang to scripts
This commit is contained in:
parent
89bb346e63
commit
c6ad290bc6
2 changed files with 6 additions and 0 deletions
|
@ -1,2 +1,5 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
git pull
|
||||
docker-compose up -d --no-deps --build
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
cd ui
|
||||
yarn
|
||||
yarn build
|
||||
|
|
Loading…
Reference in a new issue