mirror of
https://github.com/pebble-dev/clay.git
synced 2026-08-28 04:46:57 -04:00
10 lines
313 B
Bash
Executable File
10 lines
313 B
Bash
Executable File
#!/bin/bash
|
|
|
|
test_app_folder_name="clay-test"
|
|
if [ "$(basename $(pwd))" != "$test_app_folder_name" ]; then
|
|
echo "Must be executed from $test_app_folder_name folder"
|
|
exit
|
|
fi
|
|
|
|
pebble clean && cd .. && npm run pebble-build || { cd $test_app_folder_name && exit; } && cd $test_app_folder_name && pebble build
|