Skip to content
Snippets Groups Projects
Commit 6f5672f9 authored by Chrysostomos Nanakos's avatar Chrysostomos Nanakos
Browse files

Add ci files

parent 8d9a658e
No related branches found
No related tags found
No related merge requests found
#!/usr/bin/env bash
set -e
PACKAGES_DIR=$1
shift
TEMP_DIR=$(mktemp -d /tmp/devflow_autopkg_XXXXXXX)
# Create the packages
devflow-autopkg snapshot -b $TEMP_DIR $@
# MOVE the packages
mkdir -p $PACKAGES_DIR
mv -n $TEMP_DIR/* $PACKAGES_DIR
echo "Moved packages to: $(pwd)/$PACKAGES_DIR"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment