From c5fce1d44cc57c624d33ad6c3a4b907feaeaf2bd Mon Sep 17 00:00:00 2001 From: luboslenco Date: Mon, 27 May 2019 22:48:45 +0200 Subject: [PATCH] Fix throw message --- Sources/arm/Macro.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/arm/Macro.hx b/Sources/arm/Macro.hx index b02c2ec3..e13c6885 100644 --- a/Sources/arm/Macro.hx +++ b/Sources/arm/Macro.hx @@ -14,7 +14,7 @@ class Macro { return Context.makeExpr(proc.stdout.readLine(), Context.currentPos()); } 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"; } } }