Skip to content

Commit

Permalink
Merge pull request #144 from SolarAquarion/patch-2
Browse files Browse the repository at this point in the history
Remove the --depth as it is causing issues
  • Loading branch information
sedwards2009 authored Dec 21, 2018
2 parents 929ffc3 + 115fbb1 commit 1af2d5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_scripts/build_packages.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 1af2d5d

Please sign in to comment.