Created
May 2, 2019 09:27
-
-
Save Dragod/695c524358a96c6ba6d1d157707b50ed to your computer and use it in GitHub Desktop.
Copy and paste sdcore.min.js from dist folder to sd-unity-4-0/sdcore folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Copy and paste sdcore.min.js from dist folder to sd-unity-4-0/sdcore folder | |
function copyjs() | |
{ | |
cd C:/gitrepos/sdcore/dist | |
for f in *.js | |
do | |
cp -v "$f" C:/gitrepos/sd-unity-4-0/sdcore/${f%.js}.js | |
done | |
printf "\nsdcore.min.js copied to 'C:/gitrepos/sd-unity-4-0/sdcore' folder\n\n" | |
printf "Done.\n" | |
} | |
copyjs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment