Skip to content

Commit

Permalink
fix double quoted string containing no variables.
Browse files Browse the repository at this point in the history
  • Loading branch information
rtprio committed Feb 13, 2024
1 parent 7e2758e commit 931bd69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@
$pip_package = 'python2-pip'
$pip_provider = pip2
} elsif $facts['os']['family'] == 'FreeBSD' {
$pip_package = sprintf( "py%s-pip", regsubst($python::version, '([0-9])\\.([0-9]+)', '\\1\\2') )
$pip_package = sprintf( 'py%s-pip', regsubst($python::version, '([0-9])\\.([0-9]+)', '\\1\\2') )
$pip_provider = 'pip'
} elsif $facts['os']['family'] == 'Gentoo' {
$pip_package = 'dev-python/pip'
Expand Down

0 comments on commit 931bd69

Please sign in to comment.