mirror of https://github.com/containers/podman.git
Improved build_rpm.sh
- assure we use bash strict mode to avoid missing errors - added untracked artifacts to gitignore Signed-off-by: Sorin Sbarnea <sorin.sbarnea@gmail.com>
This commit is contained in:
parent
f5ef3d59bc
commit
7605387a70
|
@ -1,7 +1,7 @@
|
|||
/.artifacts/
|
||||
/_output/
|
||||
/brew
|
||||
/conmon/conmon.o
|
||||
/conmon/
|
||||
/docs/*.[158]
|
||||
/docs/*.[158].gz
|
||||
/docs/remote
|
||||
|
@ -27,3 +27,5 @@ podman-remote*.zip
|
|||
podman*.tar.gz
|
||||
.idea*
|
||||
.vscode*
|
||||
contrib/spec/podman.spec
|
||||
*.rpm
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash
|
||||
set -x
|
||||
set -euxo pipefail
|
||||
|
||||
pkg_manager=`command -v dnf`
|
||||
if [ -z "$pkg_manager" ]; then
|
||||
|
|
Loading…
Reference in New Issue