osgi / osgi.enroute.site

GitHub Pages repo for OSGi enRoute website
https://enroute.osgi.org/
Apache License 2.0
18 stars 54 forks source link

Missing escape char for mvn command (microservices tutorial) #197

Closed katcaola closed 5 years ago

katcaola commented 5 years ago

The tutorial instructs the user to run the command mvn -pl !rest-app verify

but running it on a linux host yeilds:

usr@host:~/sandbox/OSGi/microservice$ mvn -pl !rest-app verify
bash: !rest: event not found
usr@host:~/sandbox/OSGi/microservice$

I will add a note about how linux-based cli users need to escape the ! in the command.

usr@host:~/sandbox/OSGi/microservice$ mvn -pl \!rest-app verify
katcaola commented 5 years ago

Fixed with Commit #199