mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-25 10:52:40 +00:00
6 lines
150 B
Bash
Executable File
6 lines
150 B
Bash
Executable File
#!/bin/sh
|
|
. .env.secret-deploy
|
|
SRC=$PROJECT_ROOT/api/v2
|
|
DST=$PROJECT_ROOT/passepartout-ios/Passepartout/Resources/Web
|
|
rm -rf $DST && cp -pr $SRC $DST
|