This file contains 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
#!/bin/bash | |
set -e | |
cd "$(dirname "${BASH_SOURCE[0]}")" | |
do_exit() { | |
local -r the_result=$1 | |
echo |
This file contains 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
package com.github.ju-la-berger; | |
import java.io.IOException; | |
import org.springframework.core.env.AbstractEnvironment; | |
import org.springframework.core.io.support.ResourcePropertySource; | |
public class EnvironmentFromResource extends AbstractEnvironment { | |
public EnvironmentFromResource(final String location) { |
This file contains 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
git ls-files --others --exclude-standard | while read filename; do git add "$filename" && git commit --message="Add new file '$filename'"; done |