Skip to content

Instantly share code, notes, and snippets.

0 info it worked if it ends with ok
1 verbose cli [ '/home/travis/.nvm/versions/node/v8.5.0/bin/node',
1 verbose cli '/home/travis/.nvm/versions/node/v8.5.0/bin/npm',
1 verbose cli 'i' ]
2 info using [email protected]
3 info using [email protected]
4 verbose npm-session ea0ebb0ccedf29ce
5 silly install runPreinstallTopLevelLifecycles
6 silly preinstall mercury@
7 info lifecycle mercury@~preinstall: mercury@
var ws = require("nodejs-websocket")
let Game = function() {
this.gameProgress = 1;
this.playerConnections = [];
this.startGame = function() {
this.demandResponse();
};
@kmoe
kmoe / vagrantdebug.log
Created April 23, 2018 14:57
vagrant plugin install vagrant-vmware-desktop --debug
❤@libr ➜ ~ vagrant plugin install vagrant-vmware-desktop --debug
INFO global: Vagrant version: 2.0.3
INFO global: Ruby version: 2.5.1
INFO global: RubyGems version: 2.7.6
INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/embedded/gems/gems/vagrant-2.0.3/bin/vagrant"
INFO global: VAGRANT_INSTALLER_VERSION="2"
INFO global: VAGRANT_DETECTED_OS="archlinux"
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/embedded"
INFO global: VAGRANT_INSTALLER_ENV="1"
INFO global: VAGRANT_NO_PLUGINS="1"

Makefiles and Go vendoring

TL;DR

Vendoring in Go 1.13+ probably doesn't work the way you expect, and neither do environment variables in Makefiles. If you maintain a Terraform provider, it's likely your vendor/ directory is being completely ignored during builds and releases.

Add this to the top of your Makefile/GNUMakefile:

.EXPORT_ALL_VARIABLES: