mirror of
https://github.com/primer/css.git
synced 2024-11-23 11:27:26 +03:00
11 lines
196 B
Bash
Executable File
11 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# generate the build directory
|
|
npm run dist
|
|
|
|
files=$(git ls-files src | sed -e 's#^src/##' | sed -e 's#/.*$##' | sort -u)
|
|
echo $files > publish-files.txt
|
|
cd src
|
|
cp -rv $files ..
|
|
cd -
|