Fix throw message

This commit is contained in:
luboslenco
2019-05-27 22:48:45 +02:00
parent 72b8361087
commit c5fce1d44c
+1 -1
View File
@@ -14,7 +14,7 @@ class Macro {
return Context.makeExpr(proc.stdout.readLine(), Context.currentPos()); return Context.makeExpr(proc.stdout.readLine(), Context.currentPos());
} }
catch (e:Dynamic) { catch (e:Dynamic) {
throw "- use 'git clone https://github.com/armory3d/armorpaint' to compile armorpaint"; throw "- use 'git clone --recursive https://github.com/armory3d/armorpaint' to compile armorpaint";
} }
} }
} }