This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.vagrant/provisioners/ansible/inventory/vagrant_ansible_inventory --list ([Errno 8] Exec format error) | |
Think this is to do with the excute bit being set on the perms, so just remove it from this file: | |
chmod -x .vagrant/provisioners/ansible/inventory/vagrant_ansible_inventory | |
You might be better off fixing you permissions properly though. I ran these: | |
find . -type f -exec chmod 644 {} \; | |
find . -type d -exec chmod 755 {} \; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var LoopbackBootPlugin = require('loopback-webpack-plugin'); | |
var fs = require('fs'); | |
var path = require('path'); | |
var webpack = require('webpack'); | |
var config = { | |
debug: true, | |
devtool: 'source-map', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cd <directory_with_repos> | |
find . -name .svn -type d -exec dirname {} \; | xargs svn upgrade |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create this file: | |
vi .git/hooks/prepare-commit-msg | |
# Paste this in (yes pasting things off the internet is good): | |
#!/bin/sh | |
git log -1 --pretty=%B > $1 | |
# This will grab the last commit message from HEAD (might not be your last commit msg!) and prepopulate your commit message. |