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/
|
/.artifacts/
|
||||||
/_output/
|
/_output/
|
||||||
/brew
|
/brew
|
||||||
/conmon/conmon.o
|
/conmon/
|
||||||
/docs/*.[158]
|
/docs/*.[158]
|
||||||
/docs/*.[158].gz
|
/docs/*.[158].gz
|
||||||
/docs/remote
|
/docs/remote
|
||||||
|
@ -27,3 +27,5 @@ podman-remote*.zip
|
||||||
podman*.tar.gz
|
podman*.tar.gz
|
||||||
.idea*
|
.idea*
|
||||||
.vscode*
|
.vscode*
|
||||||
|
contrib/spec/podman.spec
|
||||||
|
*.rpm
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -x
|
set -euxo pipefail
|
||||||
|
|
||||||
pkg_manager=`command -v dnf`
|
pkg_manager=`command -v dnf`
|
||||||
if [ -z "$pkg_manager" ]; then
|
if [ -z "$pkg_manager" ]; then
|
||||||
|
|
Loading…
Reference in New Issue