Skip to content

Instantly share code, notes, and snippets.

@tikitikipoo
Created December 12, 2014 09:14
Show Gist options
  • Save tikitikipoo/2c3d71b69e2fde92c352 to your computer and use it in GitHub Desktop.
Save tikitikipoo/2c3d71b69e2fde92c352 to your computer and use it in GitHub Desktop.
#!/bin/sh
if [ ! -e ./application/app/tmp/cache/models ]; then
mkdir -p ./application/app/tmp/cache/models
fi
if [ ! -e ./application/app/tmp/cache/persistent ]; then
mkdir -p ./application/app/tmp/cache/persistent
fi
if [ ! -e ./application/app/tmp/cache/views ]; then
mkdir -p ./application/app/tmp/cache/views
fi
if [ ! -e ./application/app/tmp/logs ]; then
mkdir -p ./application/app/tmp/logs
fi
if [ ! -e ./application/app/tmp/sessions ]; then
mkdir -p ./application/app/tmp/sessions
fi
if [ ! -e ./application/app/tmp/tests ]; then
mkdir -p ./application/app/tmp/tests
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment