Files
circ/scripts/assert_no_default_features.zsh
2024-06-11 16:50:35 -07:00

13 lines
307 B
Bash
Executable File

#!/usr/bin/env zsh
set -e
default_features_line=$(grep 'default = ' ${0:a:h:h}/Cargo.toml)
if [[ $default_features_line != "default = []" ]]
then
echo "There are default features in Cargo.toml"
echo
echo $default_features_line
echo
echo "Please remove them before pushing"
exit 1
fi