File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -168,11 +168,12 @@ case $(uname -s) in
168
168
# Debian
169
169
# ------------------------------------------------------------------------------
170
170
171
- Debian)
171
+ Debian* )
172
172
# Debian
173
+ . /etc/os-release
173
174
install_z3=" "
174
- case $( lsb_release -cs ) in
175
- wheezy )
175
+ case $VERSION_ID in
176
+ 7 )
176
177
# wheezy
177
178
echo " Installing solidity dependencies on Debian Wheezy (7.x)."
178
179
echo " ERROR - 'install_deps.sh' doesn't have Debian Wheezy support yet."
@@ -182,16 +183,16 @@ case $(uname -s) in
182
183
echo " See also https://github.com/ethereum/webthree-umbrella/issues/495 where we are working through Alpine support."
183
184
exit 1
184
185
;;
185
- jessie )
186
+ 8 )
186
187
# jessie
187
188
echo " Installing solidity dependencies on Debian Jesse (8.x)."
188
189
;;
189
- stretch )
190
+ 9 )
190
191
# stretch
191
192
echo " Installing solidity dependencies on Debian Stretch (9.x)."
192
193
install_z3=" libz3-dev"
193
194
;;
194
- buster )
195
+ 10 )
195
196
# buster
196
197
echo " Installing solidity dependencies on Debian Buster (10.x)."
197
198
install_z3=" libz3-dev"
You can’t perform that action at this time.
0 commit comments