Skip to content

Commit eb6a58d

Browse files
Version bump
1 parent e8edf5f commit eb6a58d

8 files changed

Lines changed: 9 additions & 13 deletions

File tree

bootstrap.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ If(!(Test-Path 'C:/opscode/chefdk/bin/chef')) {
1212
$KITCHEN_DATA = "${env:TEMP}/kitchen/data"
1313

1414
# Install workup
15-
C:/opscode/chefdk/bin/chef gem install "${KITCHEN_DATA}/pkg/workup-0.1.2.gem"
15+
C:/opscode/chefdk/bin/chef gem install "${KITCHEN_DATA}/pkg/workup-0.1.3.gem"
1616

1717
# Make a policyfile to test git
1818
If(!(Test-Path -Path '~/.workup')){ New-Item '~/.workup' -Type Directory }

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ else
4545
fi
4646

4747
# Install workup
48-
/opt/chefdk/bin/chef gem install /tmp/kitchen/data/pkg/workup-0.1.2.gem -V
48+
/opt/chefdk/bin/chef gem install /tmp/kitchen/data/pkg/workup-0.1.3.gem -V
4949

5050
# Make a policyfile to test git
5151
mkdir -p ~/.workup

install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Function Add-ToPath {
2828

2929
Write-Host 'Bootstrapping Workup'
3030

31-
$WORKUP_VERSION = "0.1.2"
31+
$WORKUP_VERSION = "0.1.3"
3232
$WORKUP_URL = "https://github.com/cvent/workup/releases/download/v${WORKUP_VERSION}/workup.msi"
3333
$WORKUP_DIR = Join-Path ${HOME} '.workup'
3434

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ echo_error() {
2222

2323
echo 'Bootstrapping Workup'
2424

25-
WORKUP_VERSION="0.1.2"
25+
WORKUP_VERSION="0.1.3"
2626
WORKUP_URL="https://github.com/cvent/workup/releases/download/v${WORKUP_VERSION}/workup.pkg"
2727
WORKUP_DIR="${HOME}/.workup"
2828

lib/workup/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
#
1818

1919
module Workup
20-
VERSION = '0.1.2'
20+
VERSION = '0.1.3'
2121
end

omnibus/config/projects/workup.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# and /opt/workup on all other platforms
1414
install_dir "#{default_root}/#{name}"
1515

16-
build_version '0.1.2'
16+
build_version '0.1.3'
1717

1818
build_iteration 1
1919

omnibus/config/software/workup.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
build do
5858
env = with_standard_compiler_flags(with_embedded_path)
5959

60-
gem 'install pkg/workup-0.1.2.gem', env: env
60+
gem 'install pkg/workup-0.1.3.gem', env: env
6161

6262
block do
6363
['workup', 'git'].each do |cmd|

omnibus/workup_build/recipes/default.rb

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,9 @@
5757
code "cmd /c start '' /wait msiexec /i (ls /vagrant/code/workup/omnibus/pkg/*.msi | select -last 1).FullName /qn"
5858
end
5959

60-
execute 'create Policyfile_git' do
61-
command 'robocopy /vagrant/code/workup/files/Policyfile.rb /Users/vagrant/.workup/Policyfile_git.rb'
62-
returns [0, 1, 2, 3]
63-
end
64-
65-
powershell_script 'Make Policyfile use git' do
60+
powershell_script 'Create and modify Policyfile_git' do
6661
code <<-EOH
62+
Copy-Item /vagrant/code/workup/files/Policyfile.rb /Users/vagrant/.workup/Policyfile_git.rb
6763
Add-Content '~/.workup/Policyfile_git.rb' "cookbook 'nop', github: 'sczizzo/Archive', rel: 'nop-cookbook'"
6864
EOH
6965
end

0 commit comments

Comments
 (0)