nice changes for customization system
[feisty_meow.git] / scripts / customize / developer / scripts / redeveloper.sh
1 #!/bin/bash
2
3 function do_redeveloper()
4 {
5   reapply_cool_permissions developer
6
7   # anything else specific to developer?
8 }
9
10 # this block should execute when the script is actually run, rather
11 # than when it's just being sourced.
12 if [[ $0 =~ .*redeveloper\.sh.* ]]; then
13   source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
14   test_or_die "sourcing the feisty meow environment"
15   source "$FEISTY_MEOW_SCRIPTS/security/cool_permissionator.sh"
16   test_or_die "sourcing the permission script"
17   do_redeveloper
18   test_or_die "redevelopering process"
19 fi
20