blob: 79f95f1e4bf21281c315cecec83153057d8883b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh -e
#
# S2I save-artifacts script for the 'kraxel/s2i-jekyll' image.
# The save-artifacts script streams a tar archive to standard output.
# The archive contains the files and folders you want to re-use in the next build.
#
# For more information see the documentation:
# https://github.com/openshift/source-to-image/blob/master/docs/builder_image.md
#
# tar cf - <list of files and folders>
if test -d .gem; then
tar cf - .gem
fi
|