We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30caef8 commit d52f6b1Copy full SHA for d52f6b1
Casks/dev-cloud.rb
@@ -1,6 +1,9 @@
1
cask "dev-cloud" do
2
+ config_file = './local_config.rb'
3
+ require config_file if File.file? config_file
4
+ VENV_VERSION ||= '.'
5
- version :latest
6
+ version VENV_VERSION
7
sha256 :no_check
8
9
url "https://github.com/DocPlanner/dev-cloud-releases/releases/download/#{version}/dev-#{version}-osx-x64.zip"
Casks/local_config.rb
@@ -0,0 +1 @@
+VENV_VERSION='2.17.1'
0 commit comments