File: ExploreCompile.sh

package info (click to toggle)
libfplus 0.2.13-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,904 kB
  • sloc: cpp: 27,543; javascript: 634; sh: 105; python: 103; makefile: 6
file content (10 lines) | stat: -rwxr-xr-x 279 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env bash

elm make src/FPlusApiExplore.elm --output=build/js/fplus_api_explore.js

if [ $? -eq 0 ]
then
  cp ./src/explore.html ./build/explore.html
  cp ./src/htmlmain_explore.js ./build/js/htmlmain_explore.js
  cp ./src/style_explore.css ./build/style_explore.css
fi