mirror of
https://github.com/primer/css.git
synced 2024-12-02 16:13:02 +03:00
14 lines
250 B
Bash
Executable File
14 lines
250 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
cwd=`pwd`
|
|
|
|
pushd ../../../github/styleguide/src/_primer > /dev/null
|
|
find . -name '*.md' > $cwd/before.txt
|
|
popd > /dev/null
|
|
|
|
pushd pages/css > /dev/null
|
|
find . -name '*.md' > $cwd/after.txt
|
|
popd > /dev/null
|
|
|
|
diff before.txt after.txt
|