Skip to content

Commit

Permalink
Remove some code comments
Browse files Browse the repository at this point in the history
  • Loading branch information
estebanways committed Dec 14, 2023
1 parent 88b1d93 commit 65ccf15
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion includes/create_box.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ create_box() {
umount $dir/environment
}

# Call the parse_skill_ if the script is run directly (not sourced)
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
(create_box)
fi
Expand Down
1 change: 0 additions & 1 deletion includes/duplicate_box.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ duplicate_box() {
cp $dir/images/"$old".img $dir/images/"$new".img
}

# Call the parse_skill_ if the script is run directly (not sourced)
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
(duplicate_box)
fi
Expand Down
1 change: 0 additions & 1 deletion includes/enter_box.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ enter-box() {
chroot $dir/environment /bin/su -
}

# Call the parse_skill_ if the script is run directly (not sourced)
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
(enter-box)
fi
Expand Down
1 change: 0 additions & 1 deletion includes/list_boxes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ list_boxes() {
"
}

# Call the parse_skill_ if the script is run directly (not sourced)
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
(list_boxes)
fi
Expand Down
1 change: 0 additions & 1 deletion includes/start_box.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ start_box() {
chroot $dir/environment /bin/su -c 'sh /boot/boot.sh'
}

# Call the parse_skill_ if the script is run directly (not sourced)
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
(start_box)
fi
Expand Down
1 change: 0 additions & 1 deletion includes/stop_box.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ stop_box() {
umount $dir/environment
}

# Call the parse_skill_ if the script is run directly (not sourced)
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
(stop_box)
fi
Expand Down

0 comments on commit 65ccf15

Please sign in to comment.