Replace sh with source

This commit is contained in:
Santiago Lo Coco 2022-01-09 21:09:21 -03:00
parent 284e5e5a89
commit 7314286995
3 changed files with 4 additions and 4 deletions

View File

@ -113,8 +113,8 @@ checkForDependencies() {
startRice() { startRice() {
displayDialogBox --title "CocoRice" --msgbox "Hi! This script will auto install my dotfiles." displayDialogBox --title "CocoRice" --msgbox "Hi! This script will auto install my dotfiles."
getGitconfigData getGitconfigData
sh scripts/linkFiles.sh source scripts/linkFiles.sh
sh scripts/install.sh source scripts/install.sh
displayDialogBox --title "CocoRice" --msgbox "All done! Enjoy..." displayDialogBox --title "CocoRice" --msgbox "All done! Enjoy..."
} }

View File

@ -28,7 +28,7 @@ downloadAndInstallPackages() {
} }
runScript() { runScript() {
source scripts/common.sh # source scripts/common.sh
downloadAndInstallPackages downloadAndInstallPackages
} }

View File

@ -116,7 +116,7 @@ runDetachedScript() {
} }
runScript() { runScript() {
source scripts/common.sh # source scripts/common.sh
loopThroughFiles loopThroughFiles
} }