Skip to content

Commit 1b439f2

Browse files
committed
Merge pull request #112 from brodykenrick/master
Rename launch_plugin script to build_then_launch
2 parents a3e8a4b + 4da8a98 commit 1b439f2

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22

3-
file_x86="./it.baeyens.arduino.product/target/products/it.baeyens.arduino.product/linux/gtk/x86/opt/eclipseArduino/eclipse"
4-
file_x86_64="./it.baeyens.arduino.product/target/products/it.baeyens.arduino.product/linux/gtk/x86_64/opt/eclipseArduino/eclipse"
3+
file_x86="./it.baeyens.arduino.product/target/products/it.baeyens.arduino.product/linux/gtk/x86/opt/eclipseArduino/eclipseArduinoIDE"
4+
file_x86_64="./it.baeyens.arduino.product/target/products/it.baeyens.arduino.product/linux/gtk/x86_64/opt/eclipseArduino/eclipseArduinoIDE"
55
file=""
66

7-
echo "Trying to build and launch the Arduino Eclipse Plugin"
7+
echo "Trying to build and then launch the Arduino Eclipse IDE"
88

99
echo "First we build with Maven. This may download a lot and take some time (it is downloading all Eclipse CDT for you)"
1010
mvn --version
@@ -21,7 +21,7 @@ if [[ $? -ne 0 ]] ; then
2121
fi
2222

2323

24-
echo "Now we find the Eclipse executable (with our plugin pre-packaged) and launch it"
24+
echo "Searching for the Eclipse executable (with our plugin pre-packaged) to launch"
2525
#Find an executable if we made it successfully
2626
if [[ -x "$file_x86" ]]
2727
then
@@ -44,7 +44,7 @@ then
4444
eval $file
4545
exit 0;
4646
else
47-
echo "Did not find an Eclipse executable built....."
47+
echo "Did not find an Eclipse Arduino IDE executable built....."
4848
exit 1;
4949
fi
5050

readme.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ The Arduino Eclipse Plugin bridges that gap and helps move you to a more powerfu
88

99
It works on MS Windows, Mac OSX and Linux.
1010

11+
##Are you a regular user?
12+
If you are a regular user and don't want to build from source then there are precompiled product packages and update sites available. See the details at http://www.baeyens.it/eclipse/.
13+
1114
##Quick Installation
1215
###Prerequisites
1316

@@ -26,7 +29,7 @@ open it.baeyens.arduino.product/target/products/it.baeyens.arduino.product/macos
2629

2730
for Linux you can run the verify and start eclipse in on command:
2831

29-
./launch_plugin.sh
32+
./build_then_launch_plugin.sh
3033

3134

3235
###Running the IDE/Plugin
@@ -36,12 +39,12 @@ win32x64.cmd (if you are on 64 bits windows)
3639

3740
win32x32.cmd (if you are on 32 bits windows)
3841

39-
./launch_plugin.sh (Mac OSX and Linux)
42+
./build_then_launch_plugin.sh (Mac OSX and Linux)
4043

4144

4245
=======
4346
##Build Options
44-
You can control the build with the following profiles:
47+
You can control the maven build with the following profiles:
4548
* juno (default) (builds against the juno repositories (4.2))
4649
* kepler (builds agains the kepler repositories (4.3))
4750
* luna (builds agains the luna repositories (4.4))

0 commit comments

Comments
 (0)