Browse Source

Fix arch/sudo command in instructions

This command runs properly on my M1; the one listed before gives the error `arch: posix_spawnp: gem: Bad CPU type in executable`
Phoenix Eliot 2 years ago
parent
commit
f0744e32c5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/develop-logseq-on-mobile.md

+ 1 - 1
docs/develop-logseq-on-mobile.md

@@ -9,7 +9,7 @@
   Note: use the following commands from *ios/App* directory to fix **ffi_c.bundle** related issue for M1 MacBook [^1].  
   (Working directory: `ios/App`)
   ```shell
-  sudo arch -x86_64 gem install ffi
+  arch -x86_64 sudo gem install ffi
   arch -x86_64 pod install
   ```