[packit] 0.6.0 upstream release
Upstream tag: 0.6.0 Upstream commit: 42dc2924 Signed-off-by: Nikola Forró <nforro@redhat.com>
This commit is contained in:
parent
4fcaba6fc0
commit
d2678f28f1
10 changed files with 288 additions and 0 deletions
14
plans/git_reference.py
Normal file
14
plans/git_reference.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/python
|
||||
|
||||
import subprocess
|
||||
from pathlib import Path
|
||||
|
||||
import fmf
|
||||
|
||||
tree_root = Path.cwd().absolute()
|
||||
node = fmf.Tree(tree_root).find("/plans")
|
||||
with node as data:
|
||||
data["discover"]["url"] = "https://github.com/packit/specfile.git"
|
||||
data["discover"]["ref"] = (
|
||||
subprocess.check_output(["git", "rev-parse", "HEAD"]).decode().strip()
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue