5 lines
95 B
Bash
5 lines
95 B
Bash
|
#!/bin/bash
|
||
|
if ! pkg-config ostree-1 2> /dev/null ; then
|
||
|
echo containers_image_ostree_stub
|
||
|
fi
|