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 c0d8f9c commit 25634ddCopy full SHA for 25634dd
home/bin/ff
@@ -95,8 +95,10 @@ def main():
95
96
# If --run/--debug matches, runs the specified command.
97
if args.run == lineno:
98
- if (idx := line.find('|')) >= 0:
99
- line = line[:idx]
+ if line.startswith('not '):
+ line = line[4:]
100
+ if (pos := line.find('|')) >= 0:
101
+ line = line[:pos]
102
line = f'{build_dir}/bin/{line}'
103
if args.debug >= 0:
104
line = 'rr record ' + line
home/bin/git-use
@@ -3,4 +3,4 @@ if [[ -z $1 ]]; then
3
echo git use $1
4
exit 1
5
fi
6
-git rebase $(git rev-parse --abbrev-ref origin/HEAD) "$1"
+git rebase $(git rev-parse --abbrev-ref origin/HEAD) "$1" "${@:2}"
0 commit comments