this repo has no description
20
fork

Configure Feed

Select the types of activity you want to include in your feed.

modify build script to package ligatures

Akshay 86dfb2b9 24620601

+8 -1
+8 -1
build.sh
··· 21 21 done 22 22 } 23 23 24 + export_plugins() { 25 + cp -r ligature_plugins build/scientifica/ligature_plugins 26 + } 27 + 24 28 main() { 25 29 rm -rf build 26 30 mkdir -p build/scientifica/{otb,ttf,bdf} 27 31 32 + echo "[~] Exporting ligature plugins ..." 33 + export_plugins 34 + 28 35 echo "[~] Exporting fonts ..." 29 36 export_fonts 30 37 31 38 echo "[~] Entering build directory ..." 32 39 cd build || echo "[!] Failed to enter build directory!" 33 - tar c --file scientifica.tar scientifica 40 + tar c --file scientifica.tar scientifica ligature_plugins 34 41 echo "[~] Leaving build directory ..." 35 42 36 43 echo "[!] Done!"