From c7bd92f89561b79e70388bcf2afa554d31dbe1b8 Mon Sep 17 00:00:00 2001 From: Fabien Freling Date: Thu, 20 Feb 2020 13:22:26 +0100 Subject: [PATCH] remove source dir from justfile --- justfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/justfile b/justfile index a9a581d..945ff70 100644 --- a/justfile +++ b/justfile @@ -3,18 +3,18 @@ build_dir := "$PWD/build" itchio := "damantisshrimp/taqin" edit: - godot --path {{src_dir}} --editor + godot --editor --quiet & test: - godot --path {{src_dir}} --debug --script {{src_dir}}/addons/gut/gut_cmdln.gd + godot --debug --script {{src_dir}}/addons/gut/gut_cmdln.gd export-android: mkdir -p {{build_dir}}/android - godot --path {{src_dir}} --export "Android" {{build_dir}}/android + godot --export "Android" {{build_dir}}/android export-html: mkdir -p {{build_dir}}/html - godot --path {{src_dir}} --export "HTML5" {{build_dir}}/html/index.html + godot --export "HTML5" {{build_dir}}/html/index.html deploy-html: export-html butler push {{build_dir}}/html {{itchio}}:html