#!/bin/bash

if [ -z "$CLI_SANDBOX_TOP" ]; then
    echo "CLI_SANDBOX_TOP is not set"
    exit 1
fi

umask 0077 || exit $?
touch "$CLI_SANDBOX_TOP/ready"
