mirror of
https://github.com/penpot/penpot.git
synced 2025-12-12 06:24:17 +01:00
🐛 Fix control on entry parameters
Signed-off-by: mathieu.brunot <mathieu.brunot@monogramm.io>
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
if [ ! -d "$1" ] || [ ! -d "$2" ]; then
|
|
||||||
echo "Expecting path to backend and destination directory"
|
if [ "$#" -ne 0 ]; then
|
||||||
|
echo "Expecting parameters: 1=path to backend; 2=destination directory"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user