Skip to content

Commit

Permalink
Update DONT-COMMIT file sample and the README sample
Browse files Browse the repository at this point in the history
  • Loading branch information
marcos-iov committed Aug 8, 2023
1 parent 93be296 commit 3409fd7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ includeBuild('<ABSOLUTE-PATH-TO-RSKJ-SOURCE-CODE>') {
if (dependency.requested instanceof ModuleComponentSelector
&& dependency.requested.group == 'co.rsk'
&& dependency.requested.module == 'rskj-core'
&& dependency.requested.version.endsWith('SNAPSHOT')) {
&& (dependency.requested.version.endsWith('SNAPSHOT') || dependency.requested.version.endsWith('RC'))) {
def targetProject = project(":${dependency.requested.module}")
if (targetProject != null) {
println('---- USING LOCAL ' + dependency.requested.displayName +' PROJECT ----')
Expand Down
2 changes: 1 addition & 1 deletion development-settings.gradle.sample
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ includeBuild('/home/user/another/dir/rskj/') {
if (dependency.requested instanceof ModuleComponentSelector
&& dependency.requested.group == 'co.rsk'
&& dependency.requested.module == 'rskj-core'
&& dependency.requested.version.endsWith('SNAPSHOT')) {
&& (dependency.requested.version.endsWith('SNAPSHOT') || dependency.requested.version.endsWith('RC'))) {
def targetProject = project(":${dependency.requested.module}")
if (targetProject != null) {
println('---- USING LOCAL ' + dependency.requested.displayName +' PROJECT ----')
Expand Down

0 comments on commit 3409fd7

Please sign in to comment.