mirror of
https://github.com/primer/css.git
synced 2024-11-28 04:43:05 +03:00
12 lines
200 B
Bash
Executable File
12 lines
200 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# generate the build directory
|
|
yarn dist
|
|
|
|
files=$(git ls-files src | sed -e 's#^src/##' | sed -e 's#/.*$##' | sort -u)
|
|
echo $files > publish-files.log
|
|
cd src
|
|
cp -rv $files ..
|
|
cd -
|