summaryrefslogtreecommitdiffstats
path: root/compile-all-targets.sh
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-11-18 19:08:31 +0100
committerCanop <cano.petrole@gmail.com>2020-11-18 19:35:59 +0100
commit644a7fbbdc07b5882649b7638e2182ff0a757c16 (patch)
tree39453b88e976390c932ec1f69589b5750b683fd1 /compile-all-targets.sh
parentea9f563c10928b774c90bf9479226586179e1710 (diff)
add the vscode.ttf file to the distribution
Diffstat (limited to 'compile-all-targets.sh')
-rwxr-xr-xcompile-all-targets.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/compile-all-targets.sh b/compile-all-targets.sh
index 499bced..3e095a1 100755
--- a/compile-all-targets.sh
+++ b/compile-all-targets.sh
@@ -32,6 +32,13 @@ mkdir build/completion
cp "$(broot -c ":gi;release;:focus;broot.bash;:parent;:pp" target)/"* build/completion
echo " Done"
+# add the resource (the icons font)
+echo -e "${H2}copying resources${EH}"
+mkdir build/resources
+cp resources/icons/vscode/vscode.ttf build/resources
+echo "the font file comes from https://github.com/vscode-icons/vscode-icons/ and is licensed as MIT" > build/resources/README.md
+echo " Done"
+
# build the windows version (with the "clipboard" feature)
# use cargo cross
echo -e "${H2}Compiling the Windows version${EH}"