We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb9f045 commit ef6f01aCopy full SHA for ef6f01a
docker/gitolite/system/make_ssl_config.sh
@@ -36,15 +36,12 @@ do
36
fi
37
done
38
39
-while :
40
-do
41
- echo -n "Enter a IdentityFile path (default : ~/.ssh/git-manager) >"
42
- read identityFile_path
43
- echo "Entered a IdentityFile path: $identityFile_path"
44
- if [[ "$identityFile_path" != "" ]]; then
45
- identityFile_path="~/.ssh/git-manager"
46
- fi
47
-done
+echo -n "Enter a IdentityFile path (default : ~/.ssh/git-manager) >"
+read identityFile_path
+echo "Entered a IdentityFile path: $identityFile_path"
+if [[ "$identityFile_path" == "" ]]; then
+ identityFile_path="~/.ssh/git-manager"
+fi
48
49
sed 's/domain/'$domain'/' sample_config > sample_config'1'.temp
50
sed 's/portnumber/'$portnumber'/' sample_config'1'.temp > config
0 commit comments