mirror of
https://github.com/dockersrc/ubuntu
synced 2024-11-21 11:23:06 -05:00
🗃️ Committing everything that changed 🗃️
Some checks failed
release-tag / release-image (push) Failing after 1h17m41s
Some checks failed
release-tag / release-image (push) Failing after 1h17m41s
rootfs/usr/local/bin/copy rootfs/usr/local/bin/symlink
This commit is contained in:
parent
a6bd34e623
commit
278f85bc80
@ -55,7 +55,8 @@ COPY_EXIT_STATUS=0
|
|||||||
# Main application
|
# Main application
|
||||||
{ [ $# -eq 2 ] || [ "$1" = "--help" ]; } || { __printf_color "Usage: $APPNAME fromFile toFile" && exit 1; }
|
{ [ $# -eq 2 ] || [ "$1" = "--help" ]; } || { __printf_color "Usage: $APPNAME fromFile toFile" && exit 1; }
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
if [ "$1" != "$2" ]; then
|
is_link="$(ls -la "$2" 2>/dev/null | awk '{print $NF}')"
|
||||||
|
if [ "$1" != "$is_link" ]; then
|
||||||
if [ -d "$1" ]; then
|
if [ -d "$1" ]; then
|
||||||
mkdir -p "$2"
|
mkdir -p "$2"
|
||||||
cp -Rf "$1/." "$2/"
|
cp -Rf "$1/." "$2/"
|
||||||
|
@ -55,7 +55,8 @@ SYMLINK_EXIT_STATUS=0
|
|||||||
# Main application
|
# Main application
|
||||||
{ [ $# -eq 2 ] || [ "$1" = "--help" ]; } || { __printf_color "Usage: $APPNAME fromFile toFile" && exit 1; }
|
{ [ $# -eq 2 ] || [ "$1" = "--help" ]; } || { __printf_color "Usage: $APPNAME fromFile toFile" && exit 1; }
|
||||||
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
||||||
if [ "$1" != "$2" ]; then
|
is_link="$(ls -la "$2" 2>/dev/null | awk '{print $NF}')"
|
||||||
|
if [ "$1" != "$is_link" ]; then
|
||||||
if [ -L "$2" ]; then
|
if [ -L "$2" ]; then
|
||||||
unlink "$2"
|
unlink "$2"
|
||||||
elif [ -e "$2" ]; then
|
elif [ -e "$2" ]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user