create-stardrive 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/bin/index.js +1 -1
  2. package/package.json +1 -1
package/bin/index.js CHANGED
@@ -221,7 +221,7 @@ step(`Beaming ${c.bold(tag)} down from orbit`);
221
221
  info(repo);
222
222
 
223
223
  execSync(
224
- `git clone --depth=1 --branch ${tag} --quiet ${repo} "${tempDir}"`,
224
+ `git -c advice.detachedHead=false clone --depth=1 --branch ${tag} --quiet ${repo} "${tempDir}"`,
225
225
  {
226
226
  stdio: ["ignore", "ignore", "inherit"],
227
227
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-stardrive",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "This is the launchpad application to create the Astro Stardrive boilerplate.",
5
5
  "bin": {
6
6
  "create-stardrive": "bin/index.js"