Skip to content

Commit

Permalink
Add bash shebang to scripts for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
ty2k committed Aug 19, 2024
1 parent d5e71a2 commit 3074977
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/design-tokens/run-build.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

# Remove existing build target directories
rm -rf build/cjs*
rm -rf build/css*
Expand Down
2 changes: 2 additions & 0 deletions packages/design-tokens/run-prepare-npm-package.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

# Remove existing dist target directories
rm -rf dist/cjs*
rm -rf dist/css*
Expand Down
2 changes: 2 additions & 0 deletions packages/design-tokens/run-publish-npm-package.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

# The dist directory is used as the root for the published design tokens package
cd dist

Expand Down

0 comments on commit 3074977

Please sign in to comment.