mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-12 11:39:04 +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/v1
|
|
DST=$PROJECT_ROOT/passepartout-ios/Passepartout/Resources/Web
|
|
rm -rf $DST && cp -pr $SRC $DST
|