Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Bug: Setup script crashes with 'Error writing structure' #1195

Closed
3 tasks done
lcforbes opened this issue Jan 6, 2024 · 4 comments · Fixed by #1197
Closed
3 tasks done

🐛 Bug: Setup script crashes with 'Error writing structure' #1195

lcforbes opened this issue Jan 6, 2024 · 4 comments · Fixed by #1197
Assignees
Labels
status: accepting prs Please, send a pull request to resolve this! type: bug Something isn't working :(

Comments

@lcforbes
Copy link

lcforbes commented Jan 6, 2024

Bug Report Checklist

  • I have tried restarting my IDE and the issue persists.
  • I have pulled the latest main branch of the repository.
  • I have searched for related issues and found none that matched my issue.

Expected

You should be able to run 'npx create-typescript-app'.

Actual

 Creating repository structure...
│   - Writing structure...│  ❌ Error writing structure > writing structure.
│
Error: Failed writing structure > writing structure
    at withSpinners (file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/create-typescript-app/lib/shared/cli/spinners.js:32:13)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async createWithOptions (file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/create-typescript-app/lib/create/createWithOptions.js:12:3)
    ... 2 lines matching cause stack trace ...
    at async Object.create (file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/create-typescript-app/lib/create/index.js:29:11)
    at async bin (file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/create-typescript-app/lib/bin/index.js:67:36)
    at async file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/create-typescript-app/bin/index.js:4:20 {
  [cause]: Error: Command failed with exit code 1: chmod ug+x .husky/pre-commit
  'chmod' is not recognized as an internal or external command,
  operable program or batch file.
      at makeError (file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/execa/lib/error.js:60:11)
      at handlePromise (file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/execa/index.js:124:26)
      at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
      at async writeStructure (file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/create-typescript-app/lib/steps/writing/writeStructure.js:6:3)
      at async file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/create-typescript-app/lib/create/createWithOptions.js:16:9
      at async withSpinners (file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/create-typescript-app/lib/shared/cli/spinners.js:28:7)
      at async createWithOptions (file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/create-typescript-app/lib/create/createWithOptions.js:12:3)
      at async run (file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/create-typescript-app/lib/create/index.js:31:34)
      at async runOrRestore (file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/create-typescript-app/lib/shared/runOrRestore.js:7:5)
      at async Object.create (file:///C:/Users/leroy/AppData/Local/npm-cache/_npx/4aa729db9999bfc4/node_modules/create-typescript-app/lib/create/index.js:29:11) {
    shortMessage: 'Command failed with exit code 1: chmod ug+x .husky/pre-commit',
    command: 'chmod ug+x .husky/pre-commit',
    escapedCommand: 'chmod "ug+x" ".husky/pre-commit"',
    exitCode: 1,
    signal: undefined,
    signalDescription: undefined,
    stdout: '',
    stderr: "'chmod' is not recognized as an internal or external command,\r\n" +
      'operable program or batch file.',
    cwd: 'D:\\Users\\Leroy\\Documents\\coding-tutorials\\test-create-ts-app',
    failed: true,
    timedOut: false,
    isCanceled: false,
    killed: false
  }
}

Additional Info

I am running on Windows 11, yet I see that the script is attempting to run the Unix 'chmod' command.

@lcforbes lcforbes added the type: bug Something isn't working :( label Jan 6, 2024
@JoshuaKGoldberg
Copy link
Owner

JoshuaKGoldberg commented Jan 6, 2024

👋 thanks for filing @lcforbes! Good spot on the chmod command.

await $`chmod ug+x .husky/pre-commit`;

Amusingly, that line of code has been there for several months without issue till now (typicode/husky#1177 -> #718 -> #719). Looks like this package isn't getting used on Windows at all.

I suspect that fix might not be necessary on Windows at all. Just if you move to or start with a *nix system. I'll send a quick fix to wrap the command in a try/catch.

Aside: I edited your post to wrap the pasted terminal output as a code block with ```. It's a bit easier for readability. 🙂

@JoshuaKGoldberg JoshuaKGoldberg self-assigned this Jan 6, 2024
@JoshuaKGoldberg JoshuaKGoldberg added the status: accepting prs Please, send a pull request to resolve this! label Jan 6, 2024
JoshuaKGoldberg added a commit that referenced this issue Jan 6, 2024
## PR Checklist

- [x] Addresses an existing open issue: fixes #1195
- [x] That issue was marked as [`status: accepting
prs`](https://github.com/JoshuaKGoldberg/create-typescript-app/issues?q=is%3Aopen+is%3Aissue+label%3A%22status%3A+accepting+prs%22)
- [x] Steps in
[CONTRIBUTING.md](https://github.com/JoshuaKGoldberg/create-typescript-app/blob/main/.github/CONTRIBUTING.md)
were taken

## Overview

Wraps the `chmod` with a `try`/`catch`. I figure if it fails then that's
probably a sign the running OS doesn't have it and therefore doesn't
need it.
@JoshuaKGoldberg
Copy link
Owner

@all-contributors please add @lcforbes for bug.

🤖 Beep boop! This comment was added automatically by all-contributors-auto-action.
Not all contributions can be detected from Git & GitHub alone. Please comment any missing contribution types this bot missed.
...and of course, thank you for contributing! 💙

Copy link
Contributor

@JoshuaKGoldberg

I've put up a pull request to add @lcforbes! 🎉

I couldn't determine any contributions to add, did you specify any contributions?
Please make sure to use valid contribution names.

Copy link

github-actions bot commented Jan 6, 2024

🎉 This is included in version v1.52.7 🎉

The release is available on:

Cheers! 📦🚀

JoshuaKGoldberg pushed a commit that referenced this issue Jan 6, 2024
Adds @lcforbes as a contributor for bug.

This was requested by JoshuaKGoldberg [in this
comment](#1195 (comment))

---------

Co-authored-by: allcontributors[bot] <46447321+allcontributors[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: accepting prs Please, send a pull request to resolve this! type: bug Something isn't working :(
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants