This commit is contained in:
2022-09-05 12:53:37 +03:00
parent 0af725f4bf
commit 3f922615b4
2 changed files with 12 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/bin/bash
if [ -f ~/.bash_profile ];
then
echo "bash_profile exist"
else
echo "make link bash_profile"
ln -s ~/.profile ~/.bash_profile
fi
+3
View File
@@ -11,7 +11,10 @@ function option_value() {
} }
function install() { function install() {
if [ -f ~/.bash_profile ]; then
ln -s ~/.profile ~/.bash_profile ln -s ~/.profile ~/.bash_profile
fi
cd cd
if ! docker --version; then if ! docker --version; then
echo -e "${C_LGn}Docker installation...${RES}" echo -e "${C_LGn}Docker installation...${RES}"