diff options
author | Daomephsta <10936237+Daomephsta@users.noreply.github.com> | 2019-09-26 19:33:24 +1200 |
---|---|---|
committer | Modmuss50 <modmuss50@gmail.com> | 2019-09-26 08:33:24 +0100 |
commit | 61e60b28d2bfc4245da35dc00fdca52b5fc2f9e7 (patch) | |
tree | 5cdbcfa6078cd7cff3357d26071838e311ee8c5b /src/main/resources | |
parent | 91c150c7e76182be1ab211330decb9073b4499dc (diff) | |
download | architectury-loom-61e60b28d2bfc4245da35dc00fdca52b5fc2f9e7.tar.gz architectury-loom-61e60b28d2bfc4245da35dc00fdca52b5fc2f9e7.tar.bz2 architectury-loom-61e60b28d2bfc4245da35dc00fdca52b5fc2f9e7.zip |
Pass target project argument to ${project_loc} variable in generated Eclipse run configs (#133)
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/eclipse_run_config_template.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/resources/eclipse_run_config_template.xml b/src/main/resources/eclipse_run_config_template.xml index d854692f..6a217c54 100644 --- a/src/main/resources/eclipse_run_config_template.xml +++ b/src/main/resources/eclipse_run_config_template.xml @@ -12,5 +12,5 @@ <stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="%PROGRAM_ARGS%"/> <stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="%MODULE%"/> <stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="%VM_ARGS%"/> - <stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${project_loc}/run"/> + <stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value="${project_loc:%MODULE%}/run"/> </launchConfiguration> |