mirror of
https://github.com/containers/podman.git
synced 2025-09-15 20:56:00 +08:00
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:
4
.gitignore
vendored
4
.gitignore
vendored
@ -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
|
||||||
|
Reference in New Issue
Block a user