mirror of
https://github.com/placeAtlas/atlas.git
synced 2024-11-12 13:02:04 +01:00
7 lines
No EOL
183 B
Bash
Executable file
7 lines
No EOL
183 B
Bash
Executable file
#!/bin/bash
|
|
|
|
touch combined.js;
|
|
cat ./web/_js/atlas.js > combined.js;
|
|
cat ./web/_js/view.js >> combined.js;
|
|
cat ./web/_js/draw.js >> combined.js;
|
|
cat ./web/_js/main.js >> combined.js; |