mirror of
https://github.com/tooot-app/app
synced 2024-12-12 09:10:19 +01:00
8 lines
128 B
Bash
Executable File
8 lines
128 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Arguments incorrect"
|
|
exit 1
|
|
fi
|
|
|
|
expo publish --target bare --release-channel=$1 |