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
| #!/usr/bin/env fish | |
| set target (if set -q argv[1]; echo $argv[1]; else; echo "."; end) | |
| set output output.xml | |
| if not test -d $target | |
| echo "Error: Directory \"$target\" does not exist" | |
| exit 1 | |
| end | |
| echo "Compiling project from $target to $output..." |