class ChefCLI::PolicyfileServices::Push

def run

def run
  unless File.exist?(policyfile_lock_expanded_path)
    raise LockfileNotFound, "No lockfile at #{policyfile_lock_expanded_path} - you need to run `install` before `push`"
  end
  validate_lockfile
  write_updated_lockfile
  upload_policy
end