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.
2 parents dc29455 + b7de0c1 commit 5b6ea9fCopy full SHA for 5b6ea9f
script/create-diff-link.sh
@@ -0,0 +1,15 @@
1
+#!/usr/bin/env bash
2
+
3
+set -e
4
5
+echo "fetching updates from production app…"
6
+git fetch heroku-prod
7
8
+prod_sha=`git rev-parse --short heroku-prod/master`
9
+master_sha=`git rev-parse --short master`
10
11
+echo ""
12
+echo "production app is at: ${prod_sha}"
13
+echo "local \`master\` branch is at: ${master_sha}"
14
15
+echo "https://github.com/rust-lang/crates.io/compare/${prod_sha}...${master_sha}"
0 commit comments