7 lines
95 B
Bash
7 lines
95 B
Bash
|
|
#!/usr/bin/bash
|
||
|
|
cd $MACHINE_DIR
|
||
|
|
commit_if_modified $MACHINE_DIR/install/pacman.sh
|
||
|
|
cd -
|
||
|
|
exit 0
|
||
|
|
|