10
0
mirror of https://github.com/LCPQ/quantum_package synced 2024-06-22 13:12:16 +02:00
quantum_package/scripts/module/create_gitignore.sh

64 lines
1.1 KiB
Bash
Raw Normal View History

#!/bin/bash
#
# Creates the .gitignore file in the Modules to ignore the symlinks
#
# Tue Jan 13 14:18:05 CET 2015
#
2015-06-08 14:49:10 +02:00
if [[ -z ${QP_ROOT} ]]
then
2015-06-08 14:49:10 +02:00
print "The QP_ROOT environment variable is not set."
print "Please reload the quantum_package.rc file."
exit -1
fi
2015-06-08 14:49:10 +02:00
source ${QP_ROOT}/scripts/qp_include.sh
2015-06-02 18:17:59 +02:00
function do_gitingore()
{
cat << EOF > .gitignore
#
# Do not modify this file. Add your ignored files to the gitignore
# (without the dot at the beginning) file.
#
build.ninja
irpf90_entities
irpf90.make
IRPF90_man
IRPF90_temp
Makefile.depend
2015-06-02 18:17:59 +02:00
.ninja_deps
.ninja_log
tags
EOF
2015-06-02 18:17:59 +02:00
if [[ -f gitignore ]]
then
cat gitignore >> .gitignore
fi
find . -type l | sed "s@./@@" >> .gitignore
find . -type f -executable -print | sed "s@./@@" >> .gitignore
}
2015-06-02 18:17:59 +02:00
if [[ -z $1 ]]
then
2015-06-02 18:17:59 +02:00
check_current_dir_is_module
do_gitingore
else
check_current_dir_is_src
for i in $@
do
if [[ -d $i ]]
then
cd $i
do_gitingore
cd $OLDPWD
fi
done
fi
# Sort the .gitignore to reduce conflict in git merges
sort .gitignore |uniq > .gitignore.new
mv .gitignore.new .gitignore