mirror of
https://github.com/penpot/penpot.git
synced 2025-01-23 06:58:58 -05:00
✏️ Fix dumb typo in test to build back
Signed-off-by: mathieu.brunot <mathieu.brunot@monogramm.io>
This commit is contained in:
parent
0720ea0e97
commit
495eec6c41
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
if [ "$#" -ne 0 ]; then
|
||||
if [ "$#" -e 0 ]; then
|
||||
echo "Expecting parameters: 1=path to backend; 2=destination directory"
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
@ -129,7 +129,7 @@ function build-release-frontend {
|
|||
|
||||
function build-release-backend-local {
|
||||
echo "Prepare backend release..."
|
||||
./backend/scripts/prepare-release.sh backend/ backend/dist/
|
||||
./backend/scripts/prepare-release.sh ./backend/ ./backend/dist/
|
||||
#rm -rf backend/dist || exit 1;
|
||||
#rsync -avr \
|
||||
# --exclude="/test" \
|
||||
|
|
Loading…
Add table
Reference in a new issue