From 0acfc1068bd8109d30448f6fc0db7e155fedd6e4 Mon Sep 17 00:00:00 2001 From: Sukhmander Singh Date: Wed, 27 May 2026 13:24:04 -0700 Subject: [PATCH 1/2] Fix formula style in migration-machine.rb --- packaging/homebrew/migration-machine.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packaging/homebrew/migration-machine.rb b/packaging/homebrew/migration-machine.rb index db05751..05a96bd 100644 --- a/packaging/homebrew/migration-machine.rb +++ b/packaging/homebrew/migration-machine.rb @@ -1,10 +1,9 @@ class MigrationMachine < Formula desc "Move your Mac setup to a new machine without Migration Assistant" homepage "https://migration-machine.callmesukhi.com" - license "MIT" - url "https://github.com/callmesukhi/migration-machine/archive/refs/tags/v0.1.0.tar.gz" sha256 "113e9f2eb0eea5c4cd50e76ff03a4d4ca5fe6c61802837968addc213a3237421" + license "MIT" head "https://github.com/callmesukhi/migration-machine.git", branch: "main" depends_on :macos @@ -17,7 +16,7 @@ def install #!/bin/bash exec /bin/bash "#{libexec}/migrate" "$@" SH - chmod 0755, bin/"migrate" + chmod 0o755, bin/"migrate" end def caveats From c7b3460dcb8f201da272618cd797693a04776ece Mon Sep 17 00:00:00 2001 From: Sukhmander Singh Date: Wed, 27 May 2026 13:38:24 -0700 Subject: [PATCH 2/2] Fix chmod syntax for migrate script in migration-machine.rb --- packaging/homebrew/migration-machine.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/homebrew/migration-machine.rb b/packaging/homebrew/migration-machine.rb index 05a96bd..e7e9719 100644 --- a/packaging/homebrew/migration-machine.rb +++ b/packaging/homebrew/migration-machine.rb @@ -16,7 +16,7 @@ def install #!/bin/bash exec /bin/bash "#{libexec}/migrate" "$@" SH - chmod 0o755, bin/"migrate" + chmod 0755, bin/"migrate" end def caveats