mirror of
https://github.com/tooot-app/app
synced 2025-01-19 04:30:53 +01:00
8 lines
114 B
Bash
8 lines
114 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ $# -ne 1 ]; then
|
||
|
echo "Arguments incorrect"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
expo publish --release-channel=$1
|