Skip to content

Instantly share code, notes, and snippets.

@macfire
Last active August 3, 2018 21:49
Show Gist options
  • Save macfire/9188f494348043d40d168804eeba7484 to your computer and use it in GitHub Desktop.
Save macfire/9188f494348043d40d168804eeba7484 to your computer and use it in GitHub Desktop.
Codekit hook: timestamp
//Shell script in 'Hooks' settings panel
// Prepends timestamp to specified files
TIME=$(date +"%a %d %b %Y %H:%M:%S")
lf=$'\n';
sed "1s;^;/* $TIME */\\$lf;" $CK_INPUT_PATH > $CK_OUTPUT_PATH
@macfire
Copy link
Author

macfire commented Aug 3, 2018

Problem ...

Prepending timestamp interrupts the compiling; at least on SASS (.scss) files

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment