瀏覽代碼

Update mfpub

Scott Lahteine 5 年之前
父節點
當前提交
055cb2b956
共有 1 個文件被更改,包括 19 次插入1 次删除
  1. 19
    1
      buildroot/share/git/mfpub

+ 19
- 1
buildroot/share/git/mfpub 查看文件

@@ -115,10 +115,28 @@ git clean -d -f
115 115
 git checkout gh-pages || { echo "Something went wrong!"; exit 1; }
116 116
 rsync -av ${TMPFOLDER}/ ./
117 117
 
118
+opensite() {
119
+  TOOL=$(which gnome-open xdg-open open | awk '{ print $1 }')
120
+  URL="http://marlinfw.org/"
121
+  if [ -z "$TOOL" ]; then
122
+    echo "Can't find a tool to open the URL:"
123
+    echo $URL
124
+  else
125
+    echo "Opening the site in the browser..."
126
+    "$TOOL" "$URL"
127
+  fi
128
+}
129
+
118 130
 # Commit and push the new live site directly
119 131
 git add --all
120 132
 git commit --message "Built from ${COMMIT}"
121
-git push upstream
133
+git push upstream | {
134
+  while IFS= read -r line
135
+  do
136
+    [[ $line =~ "gh-pages -> gh-pages" ]] && opensite
137
+    echo "$line"
138
+  done
139
+}
122 140
 
123 141
 # remove the temporary folder
124 142
 rm -rf ${TMPFOLDER}

Loading…
取消
儲存