Skip to content

Commit

Permalink
Update with +x bit
Browse files Browse the repository at this point in the history
  • Loading branch information
nzakas committed May 27, 2024
1 parent acc3d9c commit abd8e36
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/migrate-config/src/migrate-config-cli.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@

/* global process, console */

/*
* IMPORTANT!
*
* Because this file is executable, `npm install` changes its permission to
* include the executable bit. This is a problem because it causes the file to
* be marked as changed in Git, even though it hasn't. This, in turn, causes
* JSR to think the directory is dirty and fails the build. To prevent this,
* we ran:
* $ git update-index --chmod=+x packages/migrate-config/src/migrate-config-cli.js
* This tells Git to ignore changes to the executable bit on this file.
*/

//-----------------------------------------------------------------------------
// Imports
//-----------------------------------------------------------------------------
Expand Down

0 comments on commit abd8e36

Please sign in to comment.