mirror of
https://github.com/psenough/pouet.net.git
synced 2025-01-17 21:28:32 +01:00
13 lines
324 B
Bash
Executable File
13 lines
324 B
Bash
Executable File
#!/bin/sh
|
|
|
|
function usage()
|
|
{
|
|
echo "Usage: $0 <push|pull> <test|live>"
|
|
echo " - $0 push test : Push local version to test.pouet.net"
|
|
echo " - $0 push live : Push local version to pouet.net"
|
|
echo " - $0 pull test : Pull test.pouet.net locally"
|
|
echo " - $0 pull live : Pull pouet.net locally"
|
|
}
|
|
|
|
usage
|