Dyrcona

error history

Jul 15th, 2022 (edited)
392
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.35 KB | None | 0 0
  1. # Made the branch on my laptop:
  2. git fetch --all
  3. git log prod/rel_3_7_3
  4. git checkout -b cwtrain/rel_3_7_4 rel_3_7
  5. version-stamp-files 3.7.4 -- -f cwtrain/rel_3_7_3 -P cwmars- -r
  6. git status
  7. git add .
  8. git cwcommit
  9. grep ^commit ~/CWMARS/files/misc/cwmars-3.7.3-patches.txt
  10. grep ^commit ~/CWMARS/files/misc/cwmars-3.7.3-patches.txt | cut -f2 -d\
  11. for commit in $(grep ^commit ~/CWMARS/files/misc/cwmars-3.7.3-patches.txt | cut -f2 -d\ ); do git cherry-pick $commit; done
  12. git log cwtrain/rel_3_7_3
  13. git cherry-pick 257c8eda464171d04ec266a43b038125a850735d
  14. git cherry-pick 465169d2
  15. git cherry-pick a982d060
  16. git push cwmars HEAD
  17. git cherry-pick b09a01a264a0371b1dd38c4ff3d398f3ec09f9aa
  18. git push cwmars HEAD
  19.  
  20. # Built branch on  the training server.
  21. cd git/Evergreen
  22. git fetch --all
  23. git checkout -b cwtrain/rel_3_7_4 cwmars/cwtrain/rel_3_7_4
  24. git branch
  25. git branch -D prod/rel_3_7_2 cwcustom/rel_3_5 ...
  26. git branch -D cwcustom/wip_3_7 cwtrain/rel_3_5_3+lp1917804 cwtrain/rel_3_...
  27. git branch
  28. git branch -D cwtrain/rel_3_5_3 cwtrain/rel_3_5_3+quipu ...
  29. git clean -x -f -d
  30. find . -type d -name ecard
  31. ls ./Open-ILS/src/templates/opac/ecard
  32. cd Open-ILS/web/opac/deps
  33. npm install
  34. cd ../../js/ui/default/staff
  35. npm install
  36. npm run build-prod
  37. cd ~/git/Evergreen/Open-ILS/src/eg2
  38. npm install
  39. ng build
  40.  
  41. # Got error here.
  42.    
  43.     ERROR in src/app/share/fm-editor/fm-editor.component.ts:517:30 - error TS2339: Property 'linkedSearchConditions' does not exist on type 'FmFieldOptions'.
  44.    
  45.     517             if (fieldOptions.linkedSearchConditions) {
  46.                                      ~~~~~~~~~~~~~~~~~~~~~~
  47.     src/app/share/fm-editor/fm-editor.component.ts:518:51 - error TS2339: Property 'linkedSearchConditions' does not exist on type 'FmFieldOptions'.
  48.    
  49.     518                 field.idlBaseQuery = fieldOptions.linkedSearchConditions;
  50.  
  51.  
  52. git log -p -- src/app/share/fm-editor/fm-editor.component.ts
  53. git diff origin/rel_3_8 -- src/app/share/fm-editor/fm-editor.component.ts
  54. git log -p -- src/app/share/fm-editor/fm-editor.component.ts
  55. ng build
  56.  
  57. # Got same error.
  58.  
  59. # Reverted the commit on my laptop
  60. git revert f2824b8457fa1e941053cdc7fa715ab21e6f58c9
  61. git push cwmars
  62.  
  63. # Finished installation on training server
  64. git pull
  65. ng build
  66.  
  67. # No error this time.
  68.  
  69. cd ~/git/Evergreen
  70. autoreconf -i
  71. ./configure --prefix=/openils --sysconfdir=/openils/conf
  72. make
  73.  
Add Comment
Please, Sign In to add comment