You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Look through nearly every file in the cmake-modules repo, but don't copy this file to your project!
(cd $MODULES_DIR && git ls-files | grep -v "update-modules") | while read -r relative; do
if [ -f "${MODULES_DIR}/${relative}" ]; then
echo "${relative}"
cp "${MODULES_DIR}/${relative}" .
fi
done
The text was updated successfully, but these errors were encountered:
if [ -f "${relative}" ]; then
Should probably read:
The text was updated successfully, but these errors were encountered: