mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 08:41:34 +02:00
6 lines
94 B
Bash
Executable file
6 lines
94 B
Bash
Executable file
#!/usr/bin/env bash
|
|
if [ -n "$1" ]; then
|
|
exec gh issue edit "$@"
|
|
fi
|
|
|
|
exec gh issue create
|