- router v2.15.1 -> v2.16.0
- slugbuilder v2.7.0 -> v2.7.1
- workflow v2.20.2 -> v2.21.0
- workflow-cli v2.20.2 -> v2.21.0
- workflow-e2e v2.20.2 -> v2.21.0
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# recursive.sh | |
# | |
# ./recursive.sh | |
# Segmentation fault (core dumped) | |
# | |
# set -e | |
# trap 'case $? in | |
# 139) echo "segfault occurred"; sleep 20; | |
# esac' CHLD && ./recursive.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Network Manager Dispatcher Hook: | |
# enables/disables ipv6 on vpn-down/vpn-up respectively | |
# Args | |
INTERFACE="$1" | |
ACTION="$2" | |
case $ACTION in | |
vpn-up) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git --git-dir=../<some_other_repo>/.git \ | |
format-patch -k -1 --stdout <commit SHA> | \ | |
git am -3 -k | |
# https://stackoverflow.com/questions/5120038/is-it-possible-to-cherry-pick-a-commit-from-another-git-repository |
OlderNewer