Files
kiss-vscode/test-env.sh
2021-08-01 21:41:25 -06:00

14 lines
359 B
Bash
Executable File

#! /bin/bash
haxelib dev kiss kiss
# Every project with a haxelib.json should be made available to every other project/unit test
projects=$(ls projects)
for project in $projects
do
if [ -e projects/${project}/haxelib.json ]
then
haxelib dev $project projects/$project
# the word project has lost all meaning at this point
fi
done