mirror of
https://github.com/penpot/penpot.git
synced 2025-06-15 13:01:39 +02: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
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if [ "$#" -ne 0 ]; then
|
if [ "$#" -e 0 ]; then
|
||||||
echo "Expecting parameters: 1=path to backend; 2=destination directory"
|
echo "Expecting parameters: 1=path to backend; 2=destination directory"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -129,7 +129,7 @@ function build-release-frontend {
|
||||||
|
|
||||||
function build-release-backend-local {
|
function build-release-backend-local {
|
||||||
echo "Prepare backend release..."
|
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;
|
#rm -rf backend/dist || exit 1;
|
||||||
#rsync -avr \
|
#rsync -avr \
|
||||||
# --exclude="/test" \
|
# --exclude="/test" \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue