Skip to content

Commit

Permalink
Merged and added quickstart.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
noboomu committed Sep 21, 2018
2 parents 5dec8f0 + 790346f commit a3879a6
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 21 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.sinistral</groupId>
<artifactId>proteus-core</artifactId>
<version>0.3.2-SNAPSHOT</version>
<artifactId>proteus-core</artifactId>
<version>0.3.3-SNAPSHOT</version>
<name>proteus core</name>
<description>Proteus is an extremely light, fast, and flexible Java REST API framework built atop Undertow.</description>
<url>http://github.com/noboomu/proteus</url>
Expand Down
19 changes: 0 additions & 19 deletions proteus.iml

This file was deleted.

28 changes: 28 additions & 0 deletions quickStart.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#!/bin/bash

set -e

command_exists() {
command -v "$@" > /dev/null 2>&1
}


do_setup() {
cat >&2 <<-'EOF_INIT'
EOF_INIT

sh_c='bash -c'

curl=''
if command_exists curl; then
curl='curl -sSL'
elif command_exists wget; then
curl='wget -qO-'
fi

$sh_c 'echo "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"'
}


do_setup

0 comments on commit a3879a6

Please sign in to comment.