-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcopy_galleon_assets.sh
More file actions
executable file
·16 lines (12 loc) · 1.01 KB
/
copy_galleon_assets.sh
File metadata and controls
executable file
·16 lines (12 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
# Copies assets for building Cryptonomic's Galleon deployment of the Tezori wallet.
# The assets are copied over from a private internal repo belonging to Cryptonomic.
# Cryptonomic developers should ensure that the internal repo is cloned in the same directory as T2.
cp ../Internal-infrastructure/deployments/prod/Galleon/assets/resources/background.png ./resources
cp ../Internal-infrastructure/deployments/prod/Galleon/assets/resources/background@2x.png ./resources
cp ../Internal-infrastructure/deployments/prod/Galleon/assets/resources/cryptonomicLogo.png ./resources
cp -R ../Internal-infrastructure/deployments/prod/Galleon/assets/resources/icons ./resources
cp ../Internal-infrastructure/deployments/prod/Galleon/assets/scripts/* ./scripts
cp ../Internal-infrastructure/deployments/prod/Galleon/assets/src/config.json ./src
cp ../Internal-infrastructure/deployments/prod/Galleon/assets/src/main.dev.js ./src
cp -R ../Internal-infrastructure/deployments/prod/Galleon/assets/src/extraResources ./src/extraResources