We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 314c61d commit 2d22978Copy full SHA for 2d22978
scripts/clone-repo.sh
@@ -49,7 +49,8 @@ if [[ $success -ne 0 ]]; then
49
fi
50
51
# Open in terminal via Alfred
52
-echo -n "$local_repo_folder/$clone_dir"
+abs_path="$local_repo_folder/$clone_dir"
53
+echo -n "$abs_path"
54
55
cd "$clone_dir" || return 1
56
@@ -103,7 +104,7 @@ fi
103
104
if [[ "$ownerOfRepo" != "true" && "$fork_on_clone" == "1" ]]; then
105
106
if [[ -x "$(command -v gh)" ]]; then
- gh repo fork --remote=false
107
+ gh repo fork --remote=false &> /dev/null
108
else
109
echo "ERROR: Cannot fork, \`gh\` not installed."
110
0 commit comments