run.sh 380 B

123456789101112131415
  1. #!/bin/bash
  2. # Run script for xmake-idea plugin in development mode
  3. set -e
  4. echo "Running xmake-idea plugin in development mode..."
  5. echo "This will build the plugin and start IntelliJ IDEA with the plugin loaded."
  6. # Run the plugin in development mode
  7. ./gradlew runIde
  8. echo "Plugin development session ended."
  9. echo ""
  10. echo "To build the plugin without running, use: ./build.sh"