Skip to content

Commit

Permalink
fix replit downgrading ruby version
Browse files Browse the repository at this point in the history
  • Loading branch information
illiatdesdindes authored Jul 17, 2024
1 parent 3ba63aa commit 6640279
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bin/setup_replit
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,8 @@ FileUtils.chdir APP_ROOT do
system! "cp db/development.sqlite3.setup db/development.sqlite3"

end

# fix replit downgrading ruby version
c = File.read(".replit")
c.gsub!("ruby-3.2", "ruby-3.3")
File.write(".replit", c)

0 comments on commit 6640279

Please sign in to comment.