mirror of
https://github.com/primer/css.git
synced 2024-12-28 16:45:52 +03:00
8 lines
151 B
Plaintext
8 lines
151 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
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 -
|