Compare commits

..

No commits in common. "75d482cd6b0045fa463f0375d2bdf4b2ea4a3d1d" and "11ed9e71d062a2e863dda2b896abb8763ea3db47" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View file

@ -75,7 +75,7 @@
packages = {
matrix-notifier = pkgs.stdenvNoCC.mkDerivation rec {
pname = "matrix-notifier";
version = "0.1.2";
version = "0.1.1";
src = ./matrix-notifier;

View file

@ -38,7 +38,7 @@ rawurlencode() {
default_drone_message() {
local msg="Build ${DRONE_BUILD_STATUS}"
msg="$msg ${DRONE_SYSTEM_PROTO}://${DRONE_SYSTEM_HOST}/${DRONE_REPO}/${DRONE_BUILD_NUMBER}"
msg="$msg (${DRONE_TAG:-$DRONE_BRANCH})"
msg="$msg (${DRONE_BRANCH})"
printf '%s' "$msg"
}