From 115fbb1cd360518ef5e7d93ae834b366a3c4f40a Mon Sep 17 00:00:00 2001 From: SolarAquarion Date: Thu, 20 Dec 2018 18:43:41 -0500 Subject: [PATCH] Remove the --depth as it is causing issues --- build_scripts/build_packages.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_scripts/build_packages.js b/build_scripts/build_packages.js index 06a51358d..81907fffe 100644 --- a/build_scripts/build_packages.js +++ b/build_scripts/build_packages.js @@ -42,7 +42,7 @@ function main() { // For some reason pwd() is returning "not quite strings" which path.join() doesn't like. Thus "" + ... const buildTmpPath = "" + pwd(); - exec("git clone --depth 1 -b " + info.branch + " " + gitUrl); + exec("git clone -b " + info.branch + " " + gitUrl); cd("extraterm"); echo("Setting up the run time dependencies in " + BUILD_TMP);