SamKirkland / FTP-Deploy-Action

Deploys a GitHub project to a FTP server using GitHub actions
MIT License
3.7k stars 367 forks source link

Action succeeds, log shows changes but files on server are not updated #169

Open xannasavin opened 3 years ago

xannasavin commented 3 years ago

Bug Description So I'm using this action since a while and it was working well. Now suddenly I have strange issues which I noticed yesterday and today during the deployment of two different projects: The actions is triggered on push to master. It runs completely and succeeds. The log shows file changes and removals. But on the server the files are not updated at all. They are still on their old status. I double checked the secrets and they are correct, I can also connect via FTP using those credentials. Could you please help?

My Action Config

# https://github.com/marketplace/actions/ftp-deploy
# 21.01.2021
# This is a basic workflow to help you get started with Actions

name: πŸš€ Deploy website on push

# Controls when the action will run. 
on:
  # Triggers the workflow on push or pull request events but only for the master branch
  push:
    branches: [ master ]
  # pull_request:
    # branches: [ master ]

  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
  web-deploy:
    name: πŸŽ‰ Deploy
    runs-on: ubuntu-latest
    steps:
    - name: 🚚 Get latest code
      uses: actions/checkout@v2.3.2
      with:
          fetch-depth: 100
        # get the last XXX commits from history
        # Make sure this number is AT LEAST 2, that's because we need to see what has changed.

    - name: πŸ“‚ Sync files
      uses: SamKirkland/FTP-Deploy-Action@4.0.0
      with:
        server: ${{ secrets.FTP_SERVER }}
        username: ${{ secrets.FTP_USER }}
        password: ${{ secrets.FTP_PASSWORD }}
        exclude: .git*
          - .git*/**
          -  **/.git*/**
          - .github/*
         - .gitignore
          - */.gitignore
          - */.gitkeep
          - .git-ftp-ignore
          - .git-ftp-include
          - .gitlab-ci.yml
          - readme.md
          - *.md
          - .htaccess
          - *.config
          - *.conf
          - [Rr]obots.txt
          - .editorconfig
          - .gitattributes
          - user/*
          - !user/plugins/hyphens-in-urls/
          - !user/plugins/random-bg/
          - !user/plugins/random-shorturls/
          - !user/index.html
          - !user/**/index.html
          - LICENSE
          - composer.json
          - composer.lock
          - phpunit.xml.dist
          - readme.html
          - sample-public-api.txt
          - sample-public-front-page.txt
          - sample-remote-api-call.txt
          - sample-robots.txt
          - includes/**/tests/
          - build/
          - coverage/
          - phpunit.xml
          - tests/yourls-tests-config.php
          - tests/vendor/
          - tests/data/auth/config-test-auth-hashed.php
          - tests/data/htaccess/test*
          - Thumbs.db
          - Desktop.ini
          - .DS_Store
          - /nbproject/
          - .idea

My Action Log

2021-03-07T09:26:54.3558999Z ##[section]Starting: Request a runner to run this job
2021-03-07T09:26:54.7301023Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2021-03-07T09:26:54.7301116Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-03-07T09:26:54.7301566Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-03-07T09:26:54.9450901Z ##[section]Finishing: Request a runner to run this job
2021-03-07T09:27:03.1790274Z Current runner version: '2.277.1'
2021-03-07T09:27:03.1816835Z ##[group]Operating System
2021-03-07T09:27:03.1817978Z Ubuntu
2021-03-07T09:27:03.1818506Z 20.04.2
2021-03-07T09:27:03.1819053Z LTS
2021-03-07T09:27:03.1819766Z ##[endgroup]
2021-03-07T09:27:03.1820413Z ##[group]Virtual Environment
2021-03-07T09:27:03.1821219Z Environment: ubuntu-20.04
2021-03-07T09:27:03.1821903Z Version: 20210302.0
2021-03-07T09:27:03.1823397Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20210302.0/images/linux/Ubuntu2004-README.md
2021-03-07T09:27:03.1824999Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F
2021-03-07T09:27:03.1826030Z ##[endgroup]
2021-03-07T09:27:03.1828429Z ##[group]GITHUB_TOKEN Permissions
2021-03-07T09:27:03.1830172Z Actions: write
2021-03-07T09:27:03.1830750Z Checks: write
2021-03-07T09:27:03.1831361Z Contents: write
2021-03-07T09:27:03.1832197Z Deployments: write
2021-03-07T09:27:03.1833082Z Issues: write
2021-03-07T09:27:03.1833848Z Metadata: read
2021-03-07T09:27:03.1834886Z OrganizationPackages: write
2021-03-07T09:27:03.1835591Z Packages: write
2021-03-07T09:27:03.1836262Z PullRequests: write
2021-03-07T09:27:03.1837008Z RepositoryProjects: write
2021-03-07T09:27:03.1838068Z SecurityEvents: write
2021-03-07T09:27:03.1838920Z Statuses: write
2021-03-07T09:27:03.1839723Z ##[endgroup]
2021-03-07T09:27:03.1843613Z Prepare workflow directory
2021-03-07T09:27:03.2585561Z Prepare all required actions
2021-03-07T09:27:03.2598732Z Getting action download info
2021-03-07T09:27:03.6392454Z Download action repository 'actions/checkout@v2.3.2'
2021-03-07T09:27:05.2532963Z Download action repository 'SamKirkland/FTP-Deploy-Action@4.0.0'
2021-03-07T09:27:05.6651906Z ##[group]Run actions/checkout@v2.3.2
2021-03-07T09:27:05.6653252Z with:
2021-03-07T09:27:05.6653830Z   fetch-depth: 100
2021-03-07T09:27:05.6654802Z   repository: xannasavin/YOURLS
2021-03-07T09:27:05.6655914Z   token: ***
2021-03-07T09:27:05.6656554Z   ssh-strict: true
2021-03-07T09:27:05.6657183Z   persist-credentials: true
2021-03-07T09:27:05.6657796Z   clean: true
2021-03-07T09:27:05.6658222Z   lfs: false
2021-03-07T09:27:05.6658716Z   submodules: false
2021-03-07T09:27:05.6659243Z ##[endgroup]
2021-03-07T09:27:06.1520199Z Syncing repository: xannasavin/YOURLS
2021-03-07T09:27:06.1521707Z ##[group]Getting Git version info
2021-03-07T09:27:06.1522995Z Working directory is '/home/runner/work/YOURLS/YOURLS'
2021-03-07T09:27:06.1569663Z [command]/usr/bin/git version
2021-03-07T09:27:06.1750594Z git version 2.30.1
2021-03-07T09:27:06.1775800Z ##[endgroup]
2021-03-07T09:27:06.1783853Z Deleting the contents of '/home/runner/work/YOURLS/YOURLS'
2021-03-07T09:27:06.1789220Z ##[group]Initializing the repository
2021-03-07T09:27:06.1792968Z [command]/usr/bin/git init /home/runner/work/YOURLS/YOURLS
2021-03-07T09:27:06.1876294Z hint: Using 'master' as the name for the initial branch. This default branch name
2021-03-07T09:27:06.1877603Z hint: is subject to change. To configure the initial branch name to use in all
2021-03-07T09:27:06.1878936Z hint: of your new repositories, which will suppress this warning, call:
2021-03-07T09:27:06.1879903Z hint: 
2021-03-07T09:27:06.1881241Z hint:  git config --global init.defaultBranch <name>
2021-03-07T09:27:06.1882305Z hint: 
2021-03-07T09:27:06.1883773Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2021-03-07T09:27:06.1885910Z hint: 'development'. The just-created branch can be renamed via this command:
2021-03-07T09:27:06.1888218Z hint: 
2021-03-07T09:27:06.1889839Z hint:  git branch -m <name>
2021-03-07T09:27:06.1905446Z Initialized empty Git repository in /home/runner/work/YOURLS/YOURLS/.git/
2021-03-07T09:27:06.1917218Z [command]/usr/bin/git remote add origin https://github.com/xannasavin/YOURLS
2021-03-07T09:27:06.1963476Z ##[endgroup]
2021-03-07T09:27:06.1964608Z ##[group]Disabling automatic garbage collection
2021-03-07T09:27:06.1968404Z [command]/usr/bin/git config --local gc.auto 0
2021-03-07T09:27:06.2008077Z ##[endgroup]
2021-03-07T09:27:06.2015440Z ##[group]Setting up auth
2021-03-07T09:27:06.2024734Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-03-07T09:27:06.7601362Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-03-07T09:27:06.7603708Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-03-07T09:27:06.7605714Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2021-03-07T09:27:06.7607683Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2021-03-07T09:27:06.7608850Z ##[endgroup]
2021-03-07T09:27:06.7609638Z ##[group]Fetching the repository
2021-03-07T09:27:06.7611479Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=100 origin +bcb10439adbfb8921c7d7aeb13b4ef50af7cc7f8:refs/remotes/origin/master
2021-03-07T09:27:06.7612901Z remote: Enumerating objects: 1814, done.        
2021-03-07T09:27:06.7613559Z remote: Counting objects:   0% (1/1814)        
2021-03-07T09:27:06.7614205Z remote: Counting objects:   1% (19/1814)        
2021-03-07T09:27:06.7615040Z remote: Counting objects:   2% (37/1814)        
2021-03-07T09:27:06.7615882Z remote: Counting objects:   3% (55/1814)        
2021-03-07T09:27:06.7616591Z remote: Counting objects:   4% (73/1814)        
2021-03-07T09:27:06.7617497Z remote: Counting objects:   5% (91/1814)        
2021-03-07T09:27:06.7618508Z remote: Counting objects:   6% (109/1814)        
2021-03-07T09:27:06.7619157Z remote: Counting objects:   7% (127/1814)        
2021-03-07T09:27:06.7619997Z remote: Counting objects:   8% (146/1814)        
2021-03-07T09:27:06.7620775Z remote: Counting objects:   9% (164/1814)        
2021-03-07T09:27:06.7621698Z remote: Counting objects:  10% (182/1814)        
2021-03-07T09:27:06.7622950Z remote: Counting objects:  11% (200/1814)        
2021-03-07T09:27:06.7623681Z remote: Counting objects:  12% (218/1814)        
2021-03-07T09:27:06.7624508Z remote: Counting objects:  13% (236/1814)        
2021-03-07T09:27:06.7625276Z remote: Counting objects:  14% (254/1814)        
2021-03-07T09:27:06.7626168Z remote: Counting objects:  15% (273/1814)        
2021-03-07T09:27:06.7626907Z remote: Counting objects:  16% (291/1814)        
2021-03-07T09:27:06.7627847Z remote: Counting objects:  17% (309/1814)        
2021-03-07T09:27:06.7628683Z remote: Counting objects:  18% (327/1814)        
2021-03-07T09:27:06.7629520Z remote: Counting objects:  19% (345/1814)        
2021-03-07T09:27:06.7630187Z remote: Counting objects:  20% (363/1814)        
2021-03-07T09:27:06.7630851Z remote: Counting objects:  21% (381/1814)        
2021-03-07T09:27:06.7631966Z remote: Counting objects:  22% (400/1814)        
2021-03-07T09:27:06.7632735Z remote: Counting objects:  23% (418/1814)        
2021-03-07T09:27:06.7633410Z remote: Counting objects:  24% (436/1814)        
2021-03-07T09:27:06.7634031Z remote: Counting objects:  25% (454/1814)        
2021-03-07T09:27:06.7634711Z remote: Counting objects:  26% (472/1814)        
2021-03-07T09:27:06.7635415Z remote: Counting objects:  27% (490/1814)        
2021-03-07T09:27:06.7636049Z remote: Counting objects:  28% (508/1814)        
2021-03-07T09:27:06.7636715Z remote: Counting objects:  29% (527/1814)        
2021-03-07T09:27:06.7637383Z remote: Counting objects:  30% (545/1814)        
2021-03-07T09:27:06.7638091Z remote: Counting objects:  31% (563/1814)        
2021-03-07T09:27:06.7638805Z remote: Counting objects:  32% (581/1814)        
2021-03-07T09:27:06.7639471Z remote: Counting objects:  33% (599/1814)        
2021-03-07T09:27:06.7640092Z remote: Counting objects:  34% (617/1814)        
2021-03-07T09:27:06.7640921Z remote: Counting objects:  35% (635/1814)        
2021-03-07T09:27:06.7641763Z remote: Counting objects:  36% (654/1814)        
2021-03-07T09:27:06.7642369Z remote: Counting objects:  37% (672/1814)        
2021-03-07T09:27:06.7644589Z remote: Counting objects:  38% (690/1814)        
2021-03-07T09:27:06.7645401Z remote: Counting objects:  39% (708/1814)        
2021-03-07T09:27:06.7646766Z remote: Counting objects:  40% (726/1814)        
2021-03-07T09:27:06.7649034Z remote: Counting objects:  41% (744/1814)        
2021-03-07T09:27:06.7649813Z remote: Counting objects:  42% (762/1814)        
2021-03-07T09:27:06.7650459Z remote: Counting objects:  43% (781/1814)        
2021-03-07T09:27:06.7651465Z remote: Counting objects:  44% (799/1814)        
2021-03-07T09:27:06.7652339Z remote: Counting objects:  45% (817/1814)        
2021-03-07T09:27:06.7653266Z remote: Counting objects:  46% (835/1814)        
2021-03-07T09:27:06.7654121Z remote: Counting objects:  47% (853/1814)        
2021-03-07T09:27:06.7655050Z remote: Counting objects:  48% (871/1814)        
2021-03-07T09:27:06.7656172Z remote: Counting objects:  49% (889/1814)        
2021-03-07T09:27:06.7656843Z remote: Counting objects:  50% (907/1814)        
2021-03-07T09:27:06.7657741Z remote: Counting objects:  51% (926/1814)        
2021-03-07T09:27:06.7659059Z remote: Counting objects:  52% (944/1814)        
2021-03-07T09:27:06.7660119Z remote: Counting objects:  53% (962/1814)        
2021-03-07T09:27:06.7660930Z remote: Counting objects:  54% (980/1814)        
2021-03-07T09:27:06.7661897Z remote: Counting objects:  55% (998/1814)        
2021-03-07T09:27:06.7663070Z remote: Counting objects:  56% (1016/1814)        
2021-03-07T09:27:06.7663906Z remote: Counting objects:  57% (1034/1814)        
2021-03-07T09:27:06.7664625Z remote: Counting objects:  58% (1053/1814)        
2021-03-07T09:27:06.7665445Z remote: Counting objects:  59% (1071/1814)        
2021-03-07T09:27:06.7666512Z remote: Counting objects:  60% (1089/1814)        
2021-03-07T09:27:06.7667419Z remote: Counting objects:  61% (1107/1814)        
2021-03-07T09:27:06.7668323Z remote: Counting objects:  62% (1125/1814)        
2021-03-07T09:27:06.7669344Z remote: Counting objects:  63% (1143/1814)        
2021-03-07T09:27:06.7670037Z remote: Counting objects:  64% (1161/1814)        
2021-03-07T09:27:06.7671171Z remote: Counting objects:  65% (1180/1814)        
2021-03-07T09:27:06.7671861Z remote: Counting objects:  66% (1198/1814)        
2021-03-07T09:27:06.7672600Z remote: Counting objects:  67% (1216/1814)        
2021-03-07T09:27:06.7673345Z remote: Counting objects:  68% (1234/1814)        
2021-03-07T09:27:06.7674352Z remote: Counting objects:  69% (1252/1814)        
2021-03-07T09:27:06.7675095Z remote: Counting objects:  70% (1270/1814)        
2021-03-07T09:27:06.7675788Z remote: Counting objects:  71% (1288/1814)        
2021-03-07T09:27:06.7676431Z remote: Counting objects:  72% (1307/1814)        
2021-03-07T09:27:06.7677127Z remote: Counting objects:  73% (1325/1814)        
2021-03-07T09:27:06.7677851Z remote: Counting objects:  74% (1343/1814)        
2021-03-07T09:27:06.7678560Z remote: Counting objects:  75% (1361/1814)        
2021-03-07T09:27:06.7679204Z remote: Counting objects:  76% (1379/1814)        
2021-03-07T09:27:06.7679893Z remote: Counting objects:  77% (1397/1814)        
2021-03-07T09:27:06.7680584Z remote: Counting objects:  78% (1415/1814)        
2021-03-07T09:27:06.7681260Z remote: Counting objects:  79% (1434/1814)        
2021-03-07T09:27:06.7681956Z remote: Counting objects:  80% (1452/1814)        
2021-03-07T09:27:06.7682647Z remote: Counting objects:  81% (1470/1814)        
2021-03-07T09:27:06.7683290Z remote: Counting objects:  82% (1488/1814)        
2021-03-07T09:27:06.7684024Z remote: Counting objects:  83% (1506/1814)        
2021-03-07T09:27:06.7684745Z remote: Counting objects:  84% (1524/1814)        
2021-03-07T09:27:06.7685388Z remote: Counting objects:  85% (1542/1814)        
2021-03-07T09:27:06.7686387Z remote: Counting objects:  86% (1561/1814)        
2021-03-07T09:27:06.7687317Z remote: Counting objects:  87% (1579/1814)        
2021-03-07T09:27:06.7688019Z remote: Counting objects:  88% (1597/1814)        
2021-03-07T09:27:06.7688773Z remote: Counting objects:  89% (1615/1814)        
2021-03-07T09:27:06.7689805Z remote: Counting objects:  90% (1633/1814)        
2021-03-07T09:27:06.7690640Z remote: Counting objects:  91% (1651/1814)        
2021-03-07T09:27:06.7691499Z remote: Counting objects:  92% (1669/1814)        
2021-03-07T09:27:06.7692226Z remote: Counting objects:  93% (1688/1814)        
2021-03-07T09:27:06.7692877Z remote: Counting objects:  94% (1706/1814)        
2021-03-07T09:27:06.7693568Z remote: Counting objects:  95% (1724/1814)        
2021-03-07T09:27:06.7694287Z remote: Counting objects:  96% (1742/1814)        
2021-03-07T09:27:06.7694939Z remote: Counting objects:  97% (1760/1814)        
2021-03-07T09:27:06.7695659Z remote: Counting objects:  98% (1778/1814)        
2021-03-07T09:27:06.7696355Z remote: Counting objects:  99% (1796/1814)        
2021-03-07T09:27:06.7697061Z remote: Counting objects: 100% (1814/1814)        
2021-03-07T09:27:06.7697741Z remote: Counting objects: 100% (1814/1814), done.        
2021-03-07T09:27:06.7698512Z remote: Compressing objects:   0% (1/1080)        
2021-03-07T09:27:06.7699275Z remote: Compressing objects:   1% (11/1080)        
2021-03-07T09:27:06.7700128Z remote: Compressing objects:   2% (22/1080)        
2021-03-07T09:27:06.7701150Z remote: Compressing objects:   3% (33/1080)        
2021-03-07T09:27:06.7701914Z remote: Compressing objects:   4% (44/1080)        
2021-03-07T09:27:06.7702998Z remote: Compressing objects:   5% (54/1080)        
2021-03-07T09:27:06.7704348Z remote: Compressing objects:   6% (65/1080)        
2021-03-07T09:27:06.7705121Z remote: Compressing objects:   7% (76/1080)        
2021-03-07T09:27:06.7705787Z remote: Compressing objects:   8% (87/1080)        
2021-03-07T09:27:06.7706496Z remote: Compressing objects:   9% (98/1080)        
2021-03-07T09:27:06.7707241Z remote: Compressing objects:  10% (108/1080)        
2021-03-07T09:27:06.7882551Z remote: Compressing objects:  11% (119/1080)        
2021-03-07T09:27:06.7883279Z remote: Compressing objects:  12% (130/1080)        
2021-03-07T09:27:06.7883851Z remote: Compressing objects:  13% (141/1080)        
2021-03-07T09:27:06.7884420Z remote: Compressing objects:  14% (152/1080)        
2021-03-07T09:27:06.7884988Z remote: Compressing objects:  15% (162/1080)        
2021-03-07T09:27:06.7885547Z remote: Compressing objects:  16% (173/1080)        
2021-03-07T09:27:06.7886113Z remote: Compressing objects:  17% (184/1080)        
2021-03-07T09:27:06.7886684Z remote: Compressing objects:  18% (195/1080)        
2021-03-07T09:27:06.7887258Z remote: Compressing objects:  19% (206/1080)        
2021-03-07T09:27:06.7887836Z remote: Compressing objects:  20% (216/1080)        
2021-03-07T09:27:06.7888411Z remote: Compressing objects:  21% (227/1080)        
2021-03-07T09:27:06.7888971Z remote: Compressing objects:  22% (238/1080)        
2021-03-07T09:27:06.7889555Z remote: Compressing objects:  23% (249/1080)        
2021-03-07T09:27:06.7890126Z remote: Compressing objects:  24% (260/1080)        
2021-03-07T09:27:06.7890685Z remote: Compressing objects:  25% (270/1080)        
2021-03-07T09:27:06.7891440Z remote: Compressing objects:  26% (281/1080)        
2021-03-07T09:27:06.7892030Z remote: Compressing objects:  27% (292/1080)        
2021-03-07T09:27:06.7892610Z remote: Compressing objects:  28% (303/1080)        
2021-03-07T09:27:06.7893193Z remote: Compressing objects:  29% (314/1080)        
2021-03-07T09:27:06.7893779Z remote: Compressing objects:  30% (324/1080)        
2021-03-07T09:27:06.7894523Z remote: Compressing objects:  31% (335/1080)        
2021-03-07T09:27:06.7895100Z remote: Compressing objects:  32% (346/1080)        
2021-03-07T09:27:06.7895663Z remote: Compressing objects:  33% (357/1080)        
2021-03-07T09:27:06.7896221Z remote: Compressing objects:  34% (368/1080)        
2021-03-07T09:27:06.7896775Z remote: Compressing objects:  35% (378/1080)        
2021-03-07T09:27:06.7897526Z remote: Compressing objects:  36% (389/1080)        
2021-03-07T09:27:06.7898094Z remote: Compressing objects:  37% (400/1080)        
2021-03-07T09:27:06.7898650Z remote: Compressing objects:  38% (411/1080)        
2021-03-07T09:27:06.7899208Z remote: Compressing objects:  39% (422/1080)        
2021-03-07T09:27:06.7899769Z remote: Compressing objects:  40% (432/1080)        
2021-03-07T09:27:06.7900324Z remote: Compressing objects:  41% (443/1080)        
2021-03-07T09:27:06.7901045Z remote: Compressing objects:  42% (454/1080)        
2021-03-07T09:27:06.7901587Z remote: Compressing objects:  43% (465/1080)        
2021-03-07T09:27:06.7902145Z remote: Compressing objects:  44% (476/1080)        
2021-03-07T09:27:06.7903818Z remote: Compressing objects:  45% (486/1080)        
2021-03-07T09:27:06.7904420Z remote: Compressing objects:  46% (497/1080)        
2021-03-07T09:27:06.7905393Z remote: Compressing objects:  47% (508/1080)        
2021-03-07T09:27:06.7907184Z remote: Compressing objects:  48% (519/1080)        
2021-03-07T09:27:06.7908231Z remote: Compressing objects:  49% (530/1080)        
2021-03-07T09:27:06.7909350Z remote: Compressing objects:  50% (540/1080)        
2021-03-07T09:27:06.7909993Z remote: Compressing objects:  51% (551/1080)        
2021-03-07T09:27:06.7910941Z remote: Compressing objects:  52% (562/1080)        
2021-03-07T09:27:06.7911882Z remote: Compressing objects:  53% (573/1080)        
2021-03-07T09:27:06.7912457Z remote: Compressing objects:  54% (584/1080)        
2021-03-07T09:27:06.7913026Z remote: Compressing objects:  55% (594/1080)        
2021-03-07T09:27:06.7913690Z remote: Compressing objects:  56% (605/1080)        
2021-03-07T09:27:06.7914281Z remote: Compressing objects:  57% (616/1080)        
2021-03-07T09:27:06.7915121Z remote: Compressing objects:  58% (627/1080)        
2021-03-07T09:27:06.7915890Z remote: Compressing objects:  59% (638/1080)        
2021-03-07T09:27:06.7916482Z remote: Compressing objects:  60% (648/1080)        
2021-03-07T09:27:06.7917100Z remote: Compressing objects:  61% (659/1080)        
2021-03-07T09:27:06.7917853Z remote: Compressing objects:  62% (670/1080)        
2021-03-07T09:27:06.7918576Z remote: Compressing objects:  63% (681/1080)        
2021-03-07T09:27:06.7919344Z remote: Compressing objects:  64% (692/1080)        
2021-03-07T09:27:06.7920238Z remote: Compressing objects:  65% (702/1080)        
2021-03-07T09:27:06.7920971Z remote: Compressing objects:  66% (713/1080)        
2021-03-07T09:27:06.7922141Z remote: Compressing objects:  67% (724/1080)        
2021-03-07T09:27:06.7922975Z remote: Compressing objects:  68% (735/1080)        
2021-03-07T09:27:06.7923635Z remote: Compressing objects:  69% (746/1080)        
2021-03-07T09:27:06.7924291Z remote: Compressing objects:  70% (756/1080)        
2021-03-07T09:27:06.7924976Z remote: Compressing objects:  71% (767/1080)        
2021-03-07T09:27:06.7925626Z remote: Compressing objects:  72% (778/1080)        
2021-03-07T09:27:06.7926293Z remote: Compressing objects:  73% (789/1080)        
2021-03-07T09:27:06.7926949Z remote: Compressing objects:  74% (800/1080)        
2021-03-07T09:27:06.7928384Z remote: Compressing objects:  75% (810/1080)        
2021-03-07T09:27:06.7929191Z remote: Compressing objects:  76% (821/1080)        
2021-03-07T09:27:06.7930301Z remote: Compressing objects:  77% (832/1080)        
2021-03-07T09:27:06.7931394Z remote: Compressing objects:  78% (843/1080)        
2021-03-07T09:27:06.7932102Z remote: Compressing objects:  79% (854/1080)        
2021-03-07T09:27:06.7956662Z remote: Compressing objects:  80% (864/1080)        
2021-03-07T09:27:06.7957621Z remote: Compressing objects:  81% (875/1080)        
2021-03-07T09:27:06.7958359Z remote: Compressing objects:  82% (886/1080)        
2021-03-07T09:27:06.7959089Z remote: Compressing objects:  83% (897/1080)        
2021-03-07T09:27:06.7960236Z remote: Compressing objects:  84% (908/1080)        
2021-03-07T09:27:06.7960796Z remote: Compressing objects:  85% (918/1080)        
2021-03-07T09:27:06.7961567Z remote: Compressing objects:  86% (929/1080)        
2021-03-07T09:27:06.7962141Z remote: Compressing objects:  87% (940/1080)        
2021-03-07T09:27:06.7962730Z remote: Compressing objects:  88% (951/1080)        
2021-03-07T09:27:06.7963291Z remote: Compressing objects:  89% (962/1080)        
2021-03-07T09:27:06.7963857Z remote: Compressing objects:  90% (972/1080)        
2021-03-07T09:27:06.7964426Z remote: Compressing objects:  91% (983/1080)        
2021-03-07T09:27:06.7964993Z remote: Compressing objects:  92% (994/1080)        
2021-03-07T09:27:06.7965554Z remote: Compressing objects:  93% (1005/1080)        
2021-03-07T09:27:06.7966313Z remote: Compressing objects:  94% (1016/1080)        
2021-03-07T09:27:06.7966903Z remote: Compressing objects:  95% (1026/1080)        
2021-03-07T09:27:06.7967478Z remote: Compressing objects:  96% (1037/1080)        
2021-03-07T09:27:06.7968061Z remote: Compressing objects:  97% (1048/1080)        
2021-03-07T09:27:06.7968654Z remote: Compressing objects:  98% (1059/1080)        
2021-03-07T09:27:06.7969227Z remote: Compressing objects:  99% (1070/1080)        
2021-03-07T09:27:06.7969969Z remote: Compressing objects: 100% (1080/1080)        
2021-03-07T09:27:06.7971375Z remote: Compressing objects: 100% (1080/1080), done.        
2021-03-07T09:27:06.7972058Z Receiving objects:   0% (1/1814)
2021-03-07T09:27:06.7972747Z Receiving objects:   1% (19/1814)
2021-03-07T09:27:06.7973370Z Receiving objects:   2% (37/1814)
2021-03-07T09:27:06.7973975Z Receiving objects:   3% (55/1814)
2021-03-07T09:27:06.7974588Z Receiving objects:   4% (73/1814)
2021-03-07T09:27:06.7975446Z Receiving objects:   5% (91/1814)
2021-03-07T09:27:06.7976056Z Receiving objects:   6% (109/1814)
2021-03-07T09:27:06.7976654Z Receiving objects:   7% (127/1814)
2021-03-07T09:27:06.7977251Z Receiving objects:   8% (146/1814)
2021-03-07T09:27:06.7977833Z Receiving objects:   9% (164/1814)
2021-03-07T09:27:06.7978422Z Receiving objects:  10% (182/1814)
2021-03-07T09:27:06.7979025Z Receiving objects:  11% (200/1814)
2021-03-07T09:27:06.7979768Z Receiving objects:  12% (218/1814)
2021-03-07T09:27:06.7980646Z Receiving objects:  13% (236/1814)
2021-03-07T09:27:06.7981337Z Receiving objects:  14% (254/1814)
2021-03-07T09:27:06.7981999Z Receiving objects:  15% (273/1814)
2021-03-07T09:27:06.7982765Z Receiving objects:  16% (291/1814)
2021-03-07T09:27:06.7991079Z Receiving objects:  17% (309/1814)
2021-03-07T09:27:06.7991784Z Receiving objects:  18% (327/1814)
2021-03-07T09:27:06.7992287Z Receiving objects:  19% (345/1814)
2021-03-07T09:27:06.7992785Z Receiving objects:  20% (363/1814)
2021-03-07T09:27:06.7993291Z Receiving objects:  21% (381/1814)
2021-03-07T09:27:06.7993792Z Receiving objects:  22% (400/1814)
2021-03-07T09:27:06.7994294Z Receiving objects:  23% (418/1814)
2021-03-07T09:27:06.7994933Z Receiving objects:  24% (436/1814)
2021-03-07T09:27:06.7995429Z Receiving objects:  25% (454/1814)
2021-03-07T09:27:06.7995905Z Receiving objects:  26% (472/1814)
2021-03-07T09:27:06.7996392Z Receiving objects:  27% (490/1814)
2021-03-07T09:27:06.7996878Z Receiving objects:  28% (508/1814)
2021-03-07T09:27:06.7997361Z Receiving objects:  29% (527/1814)
2021-03-07T09:27:06.7997835Z Receiving objects:  30% (545/1814)
2021-03-07T09:27:06.7998309Z Receiving objects:  31% (563/1814)
2021-03-07T09:27:06.7999097Z Receiving objects:  32% (581/1814)
2021-03-07T09:27:06.7999585Z Receiving objects:  33% (599/1814)
2021-03-07T09:27:06.8000090Z Receiving objects:  34% (617/1814)
2021-03-07T09:27:06.8000600Z Receiving objects:  35% (635/1814)
2021-03-07T09:27:06.8001275Z Receiving objects:  36% (654/1814)
2021-03-07T09:27:06.8001792Z Receiving objects:  37% (672/1814)
2021-03-07T09:27:06.8002312Z Receiving objects:  38% (690/1814)
2021-03-07T09:27:06.8415721Z Receiving objects:  39% (708/1814)
2021-03-07T09:27:06.8417835Z Receiving objects:  40% (726/1814)
2021-03-07T09:27:06.8422775Z Receiving objects:  41% (744/1814)
2021-03-07T09:27:06.8442235Z Receiving objects:  42% (762/1814)
2021-03-07T09:27:06.8448769Z Receiving objects:  43% (781/1814)
2021-03-07T09:27:06.8449470Z Receiving objects:  44% (799/1814)
2021-03-07T09:27:06.8451310Z Receiving objects:  45% (817/1814)
2021-03-07T09:27:06.8455303Z Receiving objects:  46% (835/1814)
2021-03-07T09:27:06.8459219Z Receiving objects:  47% (853/1814)
2021-03-07T09:27:06.8462971Z Receiving objects:  48% (871/1814)
2021-03-07T09:27:06.8466826Z Receiving objects:  49% (889/1814)
2021-03-07T09:27:06.8470221Z Receiving objects:  50% (907/1814)
2021-03-07T09:27:06.8474241Z Receiving objects:  51% (926/1814)
2021-03-07T09:27:06.8478459Z Receiving objects:  52% (944/1814)
2021-03-07T09:27:06.8494082Z Receiving objects:  53% (962/1814)
2021-03-07T09:27:06.8517299Z Receiving objects:  54% (980/1814)
2021-03-07T09:27:06.8543420Z Receiving objects:  55% (998/1814)
2021-03-07T09:27:06.8580604Z Receiving objects:  56% (1016/1814)
2021-03-07T09:27:06.8589491Z Receiving objects:  57% (1034/1814)
2021-03-07T09:27:06.8590750Z Receiving objects:  58% (1053/1814)
2021-03-07T09:27:06.8593037Z Receiving objects:  59% (1071/1814)
2021-03-07T09:27:06.8600308Z Receiving objects:  60% (1089/1814)
2021-03-07T09:27:06.8600806Z Receiving objects:  61% (1107/1814)
2021-03-07T09:27:06.8630823Z Receiving objects:  62% (1125/1814)
2021-03-07T09:27:06.8631424Z Receiving objects:  63% (1143/1814)
2021-03-07T09:27:06.8632165Z Receiving objects:  64% (1161/1814)
2021-03-07T09:27:06.8639001Z Receiving objects:  65% (1180/1814)
2021-03-07T09:27:06.8639591Z Receiving objects:  66% (1198/1814)
2021-03-07T09:27:06.8673583Z Receiving objects:  67% (1216/1814)
2021-03-07T09:27:06.8702685Z Receiving objects:  68% (1234/1814)
2021-03-07T09:27:06.8726185Z Receiving objects:  69% (1252/1814)
2021-03-07T09:27:06.8730606Z Receiving objects:  70% (1270/1814)
2021-03-07T09:27:06.8758857Z Receiving objects:  71% (1288/1814)
2021-03-07T09:27:06.8763610Z Receiving objects:  72% (1307/1814)
2021-03-07T09:27:06.8767858Z Receiving objects:  73% (1325/1814)
2021-03-07T09:27:06.8845622Z Receiving objects:  74% (1343/1814)
2021-03-07T09:27:06.8846652Z Receiving objects:  75% (1361/1814)
2021-03-07T09:27:06.8847263Z Receiving objects:  76% (1379/1814)
2021-03-07T09:27:06.8849126Z Receiving objects:  77% (1397/1814)
2021-03-07T09:27:06.8849770Z Receiving objects:  78% (1415/1814)
2021-03-07T09:27:06.8850367Z Receiving objects:  79% (1434/1814)
2021-03-07T09:27:06.8850942Z Receiving objects:  80% (1452/1814)
2021-03-07T09:27:06.8851527Z Receiving objects:  81% (1470/1814)
2021-03-07T09:27:06.8852113Z Receiving objects:  82% (1488/1814)
2021-03-07T09:27:06.8852679Z Receiving objects:  83% (1506/1814)
2021-03-07T09:27:06.8853373Z Receiving objects:  84% (1524/1814)
2021-03-07T09:27:06.8853957Z Receiving objects:  85% (1542/1814)
2021-03-07T09:27:06.8854514Z Receiving objects:  86% (1561/1814)
2021-03-07T09:27:06.8855627Z Receiving objects:  87% (1579/1814)
2021-03-07T09:27:06.8856206Z Receiving objects:  88% (1597/1814)
2021-03-07T09:27:06.8856757Z Receiving objects:  89% (1615/1814)
2021-03-07T09:27:06.8857411Z Receiving objects:  90% (1633/1814)
2021-03-07T09:27:06.8857978Z Receiving objects:  91% (1651/1814)
2021-03-07T09:27:06.8858526Z Receiving objects:  92% (1669/1814)
2021-03-07T09:27:06.8859091Z Receiving objects:  93% (1688/1814)
2021-03-07T09:27:06.8863621Z Receiving objects:  94% (1706/1814)
2021-03-07T09:27:06.8875040Z Receiving objects:  95% (1724/1814)
2021-03-07T09:27:06.8916087Z Receiving objects:  96% (1742/1814)
2021-03-07T09:27:06.8917990Z remote: Total 1814 (delta 749), reused 1547 (delta 634), pack-reused 0        
2021-03-07T09:27:06.8943206Z Receiving objects:  97% (1760/1814)
2021-03-07T09:27:06.8945788Z Receiving objects:  98% (1778/1814)
2021-03-07T09:27:06.8946882Z Receiving objects:  99% (1796/1814)
2021-03-07T09:27:06.8947553Z Receiving objects: 100% (1814/1814)
2021-03-07T09:27:06.8948242Z Receiving objects: 100% (1814/1814), 3.04 MiB | 15.97 MiB/s, done.
2021-03-07T09:27:06.8952749Z Resolving deltas:   0% (0/749)
2021-03-07T09:27:06.8956342Z Resolving deltas:   1% (8/749)
2021-03-07T09:27:06.8958199Z Resolving deltas:   2% (15/749)
2021-03-07T09:27:06.8959799Z Resolving deltas:   3% (23/749)
2021-03-07T09:27:06.8961378Z Resolving deltas:   4% (30/749)
2021-03-07T09:27:06.8963112Z Resolving deltas:   5% (38/749)
2021-03-07T09:27:06.8964622Z Resolving deltas:   6% (45/749)
2021-03-07T09:27:06.8966115Z Resolving deltas:   7% (53/749)
2021-03-07T09:27:06.8967657Z Resolving deltas:   8% (60/749)
2021-03-07T09:27:06.8969685Z Resolving deltas:   9% (68/749)
2021-03-07T09:27:06.8970558Z Resolving deltas:  10% (75/749)
2021-03-07T09:27:06.8972453Z Resolving deltas:  11% (83/749)
2021-03-07T09:27:06.8974048Z Resolving deltas:  12% (90/749)
2021-03-07T09:27:06.8975651Z Resolving deltas:  13% (98/749)
2021-03-07T09:27:06.8977281Z Resolving deltas:  14% (105/749)
2021-03-07T09:27:06.8978884Z Resolving deltas:  15% (113/749)
2021-03-07T09:27:06.8984357Z Resolving deltas:  16% (120/749)
2021-03-07T09:27:06.8986169Z Resolving deltas:  17% (128/749)
2021-03-07T09:27:06.8986793Z Resolving deltas:  18% (135/749)
2021-03-07T09:27:06.8987391Z Resolving deltas:  19% (143/749)
2021-03-07T09:27:06.8987943Z Resolving deltas:  20% (150/749)
2021-03-07T09:27:06.8988509Z Resolving deltas:  21% (158/749)
2021-03-07T09:27:06.8989075Z Resolving deltas:  22% (165/749)
2021-03-07T09:27:06.8989625Z Resolving deltas:  23% (173/749)
2021-03-07T09:27:06.8990716Z Resolving deltas:  24% (180/749)
2021-03-07T09:27:06.8992242Z Resolving deltas:  25% (188/749)
2021-03-07T09:27:06.8993788Z Resolving deltas:  26% (195/749)
2021-03-07T09:27:06.8994366Z Resolving deltas:  27% (203/749)
2021-03-07T09:27:06.8994965Z Resolving deltas:  28% (210/749)
2021-03-07T09:27:06.8995539Z Resolving deltas:  29% (218/749)
2021-03-07T09:27:06.8999390Z Resolving deltas:  30% (225/749)
2021-03-07T09:27:06.9001122Z Resolving deltas:  31% (233/749)
2021-03-07T09:27:06.9001701Z Resolving deltas:  32% (240/749)
2021-03-07T09:27:06.9003372Z Resolving deltas:  33% (248/749)
2021-03-07T09:27:06.9020081Z Resolving deltas:  34% (255/749)
2021-03-07T09:27:06.9020777Z Resolving deltas:  35% (263/749)
2021-03-07T09:27:06.9021338Z Resolving deltas:  36% (270/749)
2021-03-07T09:27:06.9021967Z Resolving deltas:  37% (278/749)
2021-03-07T09:27:06.9023421Z Resolving deltas:  38% (285/749)
2021-03-07T09:27:06.9023999Z Resolving deltas:  39% (293/749)
2021-03-07T09:27:06.9036419Z Resolving deltas:  40% (300/749)
2021-03-07T09:27:06.9037102Z Resolving deltas:  41% (308/749)
2021-03-07T09:27:06.9038519Z Resolving deltas:  42% (315/749)
2021-03-07T09:27:06.9039108Z Resolving deltas:  43% (323/749)
2021-03-07T09:27:06.9039677Z Resolving deltas:  44% (330/749)
2021-03-07T09:27:06.9040277Z Resolving deltas:  45% (338/749)
2021-03-07T09:27:06.9049058Z Resolving deltas:  46% (345/749)
2021-03-07T09:27:06.9050747Z Resolving deltas:  47% (353/749)
2021-03-07T09:27:06.9061610Z Resolving deltas:  48% (360/749)
2021-03-07T09:27:06.9074738Z Resolving deltas:  49% (368/749)
2021-03-07T09:27:06.9075415Z Resolving deltas:  50% (375/749)
2021-03-07T09:27:06.9081781Z Resolving deltas:  51% (382/749)
2021-03-07T09:27:06.9088451Z Resolving deltas:  52% (390/749)
2021-03-07T09:27:06.9095671Z Resolving deltas:  53% (397/749)
2021-03-07T09:27:06.9098809Z Resolving deltas:  54% (405/749)
2021-03-07T09:27:06.9107623Z Resolving deltas:  55% (412/749)
2021-03-07T09:27:06.9114388Z Resolving deltas:  56% (420/749)
2021-03-07T09:27:06.9126485Z Resolving deltas:  57% (427/749)
2021-03-07T09:27:06.9130642Z Resolving deltas:  58% (435/749)
2021-03-07T09:27:06.9133787Z Resolving deltas:  59% (442/749)
2021-03-07T09:27:06.9137442Z Resolving deltas:  60% (450/749)
2021-03-07T09:27:06.9139747Z Resolving deltas:  61% (457/749)
2021-03-07T09:27:06.9147722Z Resolving deltas:  62% (465/749)
2021-03-07T09:27:06.9161289Z Resolving deltas:  63% (472/749)
2021-03-07T09:27:06.9165532Z Resolving deltas:  64% (480/749)
2021-03-07T09:27:06.9169119Z Resolving deltas:  65% (487/749)
2021-03-07T09:27:06.9173598Z Resolving deltas:  66% (495/749)
2021-03-07T09:27:06.9178631Z Resolving deltas:  67% (502/749)
2021-03-07T09:27:06.9182878Z Resolving deltas:  68% (510/749)
2021-03-07T09:27:06.9184846Z Resolving deltas:  69% (517/749)
2021-03-07T09:27:06.9188072Z Resolving deltas:  70% (525/749)
2021-03-07T09:27:06.9190784Z Resolving deltas:  71% (532/749)
2021-03-07T09:27:06.9192303Z Resolving deltas:  72% (540/749)
2021-03-07T09:27:06.9193518Z Resolving deltas:  73% (547/749)
2021-03-07T09:27:06.9194517Z Resolving deltas:  74% (555/749)
2021-03-07T09:27:06.9195571Z Resolving deltas:  75% (562/749)
2021-03-07T09:27:06.9199228Z Resolving deltas:  76% (570/749)
2021-03-07T09:27:06.9201142Z Resolving deltas:  77% (577/749)
2021-03-07T09:27:06.9203033Z Resolving deltas:  78% (585/749)
2021-03-07T09:27:06.9206364Z Resolving deltas:  79% (592/749)
2021-03-07T09:27:06.9217847Z Resolving deltas:  80% (600/749)
2021-03-07T09:27:06.9228729Z Resolving deltas:  81% (607/749)
2021-03-07T09:27:06.9232293Z Resolving deltas:  82% (615/749)
2021-03-07T09:27:06.9235554Z Resolving deltas:  83% (622/749)
2021-03-07T09:27:06.9237370Z Resolving deltas:  84% (630/749)
2021-03-07T09:27:06.9240445Z Resolving deltas:  85% (637/749)
2021-03-07T09:27:06.9241813Z Resolving deltas:  86% (645/749)
2021-03-07T09:27:06.9244673Z Resolving deltas:  87% (652/749)
2021-03-07T09:27:06.9247638Z Resolving deltas:  88% (660/749)
2021-03-07T09:27:06.9251899Z Resolving deltas:  89% (667/749)
2021-03-07T09:27:06.9254340Z Resolving deltas:  90% (675/749)
2021-03-07T09:27:06.9257287Z Resolving deltas:  91% (682/749)
2021-03-07T09:27:06.9260644Z Resolving deltas:  92% (690/749)
2021-03-07T09:27:06.9266831Z Resolving deltas:  93% (697/749)
2021-03-07T09:27:06.9267433Z Resolving deltas:  94% (705/749)
2021-03-07T09:27:06.9267991Z Resolving deltas:  95% (712/749)
2021-03-07T09:27:06.9271768Z Resolving deltas:  96% (720/749)
2021-03-07T09:27:06.9279120Z Resolving deltas:  97% (727/749)
2021-03-07T09:27:06.9279690Z Resolving deltas:  98% (735/749)
2021-03-07T09:27:06.9280484Z Resolving deltas:  99% (742/749)
2021-03-07T09:27:06.9286077Z Resolving deltas: 100% (749/749)
2021-03-07T09:27:06.9286693Z Resolving deltas: 100% (749/749), done.
2021-03-07T09:27:06.9920734Z From https://github.com/xannasavin/YOURLS
2021-03-07T09:27:06.9923060Z  * [new ref]         bcb10439adbfb8921c7d7aeb13b4ef50af7cc7f8 -> origin/master
2021-03-07T09:27:06.9946673Z ##[endgroup]
2021-03-07T09:27:06.9947321Z ##[group]Determining the checkout info
2021-03-07T09:27:06.9951351Z ##[endgroup]
2021-03-07T09:27:06.9951927Z ##[group]Checking out the ref
2021-03-07T09:27:06.9953620Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
2021-03-07T09:27:07.0717253Z Reset branch 'master'
2021-03-07T09:27:07.0725484Z Branch 'master' set up to track remote branch 'master' from 'origin'.
2021-03-07T09:27:07.0728249Z ##[endgroup]
2021-03-07T09:27:07.0745001Z [command]/usr/bin/git log -1
2021-03-07T09:27:07.0786129Z commit bcb10439adbfb8921c7d7aeb13b4ef50af7cc7f8
2021-03-07T09:27:07.0789969Z Author: xannasavin <48352696+xannasavin@users.noreply.github.com>
2021-03-07T09:27:07.0792314Z Date:   Sun Mar 7 10:16:12 2021 +0100
2021-03-07T09:27:07.0793990Z 
2021-03-07T09:27:07.0795881Z     Update main.yml
2021-03-07T09:27:07.0953724Z ##[group]Run SamKirkland/FTP-Deploy-Action@4.0.0
2021-03-07T09:27:07.0954300Z with:
2021-03-07T09:27:07.0955186Z   server: ***
2021-03-07T09:27:07.0955692Z   username: ***
2021-03-07T09:27:07.0956256Z   password: ***
2021-03-07T09:27:07.0960202Z   exclude: .git* - .git*/** -  **/.git*/** - .github/* - .gitignore - */.gitignore - */.gitkeep - .git-ftp-ignore - .git-ftp-include - .gitlab-ci.yml - readme.md - *.md - .htaccess - *.config - *.conf - [Rr]obots.txt - .editorconfig - .gitattributes - user/* - !user/plugins/hyphens-in-urls/ - !user/plugins/random-bg/ - !user/plugins/random-shorturls/ - !user/index.html - !user/**/index.html - LICENSE - composer.json - composer.lock - phpunit.xml.dist - readme.html - sample-public-api.txt - sample-public-front-page.txt - sample-remote-api-call.txt - sample-robots.txt - includes/**/tests/ - build/ - coverage/ - phpunit.xml - tests/yourls-tests-config.php - tests/vendor/ - tests/data/auth/config-test-auth-hashed.php - tests/data/htaccess/test* - Thumbs.db - Desktop.ini - .DS_Store - /nbproject/ - .idea
2021-03-07T09:27:07.0965361Z ##[endgroup]
2021-03-07T09:27:07.1541497Z ----------------------------------------------------------------
2021-03-07T09:27:07.1545707Z πŸš€ Thanks for using ftp-deploy. Let's deploy some stuff!   
2021-03-07T09:27:07.1547165Z ----------------------------------------------------------------
2021-03-07T09:27:07.1548763Z If you found this project helpful, please support it
2021-03-07T09:27:07.1555126Z by giving it a ⭐ on Github --> https://github.com/SamKirkland/FTP-Deploy-Action
2021-03-07T09:27:07.1557397Z or add a badge 🏷️ to your projects readme --> https://github.com/SamKirkland/FTP-Deploy-Action#badge
2021-03-07T09:27:09.4105502Z ----------------------------------------------------------------
2021-03-07T09:27:09.6183492Z Last published on πŸ“… Friday, March 5, 2021, 9:09 AM
2021-03-07T09:27:09.6383693Z ----------------------------------------------------------------
2021-03-07T09:27:09.6385051Z Local Files:   799
2021-03-07T09:27:09.6385815Z Server Files:  799
2021-03-07T09:27:09.6386693Z ----------------------------------------------------------------
2021-03-07T09:27:09.6387465Z Calculating differences between client & server
2021-03-07T09:27:09.6389492Z ----------------------------------------------------------------
2021-03-07T09:27:09.6390675Z πŸ—‘οΈ  Delete: .editorconfig    
2021-03-07T09:27:09.6392478Z βš–οΈ  File content is the same, doing nothing: admin/admin-ajax.php
2021-03-07T09:27:09.6393754Z βš–οΈ  File content is the same, doing nothing: admin/index.php
2021-03-07T09:27:09.6395317Z βš–οΈ  File content is the same, doing nothing: admin/install.php
2021-03-07T09:27:09.6396409Z βš–οΈ  File content is the same, doing nothing: admin/plugins.php
2021-03-07T09:27:09.6397676Z βš–οΈ  File content is the same, doing nothing: admin/tools.php
2021-03-07T09:27:09.6398665Z βš–οΈ  File content is the same, doing nothing: admin/upgrade.php
2021-03-07T09:27:09.6400154Z πŸ—‘οΈ  Delete: CHANGELOG.md    
2021-03-07T09:27:09.6401480Z βš–οΈ  File content is the same, doing nothing: css/cal.css
2021-03-07T09:27:09.6402551Z βš–οΈ  File content is the same, doing nothing: css/infos.css
2021-03-07T09:27:09.6403523Z βš–οΈ  File content is the same, doing nothing: css/palette.png
2021-03-07T09:27:09.6404651Z βš–οΈ  File content is the same, doing nothing: css/share.css
2021-03-07T09:27:09.6405724Z βš–οΈ  File content is the same, doing nothing: css/style.css
2021-03-07T09:27:09.6406618Z βš–οΈ  File content is the same, doing nothing: css/tablesorter.css
2021-03-07T09:27:09.6407547Z βš–οΈ  File content is the same, doing nothing: images/accept.png
2021-03-07T09:27:09.6409724Z βš–οΈ  File content is the same, doing nothing: images/accept.svg
2021-03-07T09:27:09.6410815Z βš–οΈ  File content is the same, doing nothing: images/admin-dashboard.gif
2021-03-07T09:27:09.6411873Z βš–οΈ  File content is the same, doing nothing: images/asc.gif
2021-03-07T09:27:09.6413115Z βš–οΈ  File content is the same, doing nothing: images/asc.svg
2021-03-07T09:27:09.6414869Z βš–οΈ  File content is the same, doing nothing: images/bg.gif
2021-03-07T09:27:09.6415864Z βš–οΈ  File content is the same, doing nothing: images/bg.svg
2021-03-07T09:27:09.6416767Z βš–οΈ  File content is the same, doing nothing: images/blank.gif
2021-03-07T09:27:09.6417681Z βš–οΈ  File content is the same, doing nothing: images/cancel.png
2021-03-07T09:27:09.6418615Z βš–οΈ  File content is the same, doing nothing: images/cancel.svg
2021-03-07T09:27:09.6419568Z βš–οΈ  File content is the same, doing nothing: images/chart_bar_add.png
2021-03-07T09:27:09.6420664Z βš–οΈ  File content is the same, doing nothing: images/chart_bar_add.svg
2021-03-07T09:27:09.6421582Z βš–οΈ  File content is the same, doing nothing: images/chart_bar.png
2021-03-07T09:27:09.6422677Z βš–οΈ  File content is the same, doing nothing: images/chart_bar.svg
2021-03-07T09:27:09.6423673Z βš–οΈ  File content is the same, doing nothing: images/copy-large.png
2021-03-07T09:27:09.6424592Z βš–οΈ  File content is the same, doing nothing: images/copy.png
2021-03-07T09:27:09.6426887Z βš–οΈ  File content is the same, doing nothing: images/copy.svg
2021-03-07T09:27:09.6428020Z βš–οΈ  File content is the same, doing nothing: images/delete.png
2021-03-07T09:27:09.6428919Z βš–οΈ  File content is the same, doing nothing: images/delete.svg
2021-03-07T09:27:09.6429808Z βš–οΈ  File content is the same, doing nothing: images/desc.gif
2021-03-07T09:27:09.6430684Z βš–οΈ  File content is the same, doing nothing: images/desc.svg
2021-03-07T09:27:09.6431558Z βš–οΈ  File content is the same, doing nothing: images/error.png
2021-03-07T09:27:09.6432622Z βš–οΈ  File content is the same, doing nothing: images/error.svg
2021-03-07T09:27:09.6433569Z βš–οΈ  File content is the same, doing nothing: images/facebook.png
2021-03-07T09:27:09.6434513Z βš–οΈ  File content is the same, doing nothing: images/facebook.svg
2021-03-07T09:27:09.6435483Z βš–οΈ  File content is the same, doing nothing: images/favicon.gif
2021-03-07T09:27:09.6436431Z βš–οΈ  File content is the same, doing nothing: images/favicon.svg
2021-03-07T09:27:09.6437621Z βš–οΈ  File content is the same, doing nothing: images/filter.gif
2021-03-07T09:27:09.6438577Z βš–οΈ  File content is the same, doing nothing: images/filter.svg
2021-03-07T09:27:09.6439508Z βš–οΈ  File content is the same, doing nothing: images/loading.gif
2021-03-07T09:27:09.6440434Z βš–οΈ  File content is the same, doing nothing: images/pencil.png
2021-03-07T09:27:09.6441581Z βš–οΈ  File content is the same, doing nothing: images/pencil.svg
2021-03-07T09:27:09.6442746Z βš–οΈ  File content is the same, doing nothing: images/share.png
2021-03-07T09:27:09.6443701Z βš–οΈ  File content is the same, doing nothing: images/share.svg
2021-03-07T09:27:09.6444615Z βš–οΈ  File content is the same, doing nothing: images/stats-anim.gif
2021-03-07T09:27:09.6445551Z βš–οΈ  File content is the same, doing nothing: images/twitter.png
2021-03-07T09:27:09.6446470Z βš–οΈ  File content is the same, doing nothing: images/twitter.svg
2021-03-07T09:27:09.6447412Z βš–οΈ  File content is the same, doing nothing: images/yourls-logo.png
2021-03-07T09:27:09.6448660Z βš–οΈ  File content is the same, doing nothing: images/yourls-logo.svg
2021-03-07T09:27:09.6449623Z βš–οΈ  File content is the same, doing nothing: includes/auth.php
2021-03-07T09:27:09.6450786Z βš–οΈ  File content is the same, doing nothing: includes/class-mysql.php
2021-03-07T09:27:09.6451855Z βš–οΈ  File content is the same, doing nothing: includes/Config/Config.php
2021-03-07T09:27:09.6452896Z βš–οΈ  File content is the same, doing nothing: includes/Config/Init.php
2021-03-07T09:27:09.6454305Z βš–οΈ  File content is the same, doing nothing: includes/Config/InitDefaults.php
2021-03-07T09:27:09.6455357Z βš–οΈ  File content is the same, doing nothing: includes/Database/Logger.php
2021-03-07T09:27:09.6456382Z βš–οΈ  File content is the same, doing nothing: includes/Database/Options.php
2021-03-07T09:27:09.6457436Z βš–οΈ  File content is the same, doing nothing: includes/Database/Profiler.php
2021-03-07T09:27:09.6458439Z βš–οΈ  File content is the same, doing nothing: includes/Database/YDB.php
2021-03-07T09:27:09.6459965Z βš–οΈ  File content is the same, doing nothing: includes/Exceptions/ConfigException.php
2021-03-07T09:27:09.6461318Z βš–οΈ  File content is the same, doing nothing: includes/functions-api.php
2021-03-07T09:27:09.6462463Z βš–οΈ  File content is the same, doing nothing: includes/functions-auth.php
2021-03-07T09:27:09.6463568Z βš–οΈ  File content is the same, doing nothing: includes/functions-compat.php
2021-03-07T09:27:09.6464641Z βš–οΈ  File content is the same, doing nothing: includes/functions-debug.php
2021-03-07T09:27:09.6465742Z βš–οΈ  File content is the same, doing nothing: includes/functions-deprecated.php
2021-03-07T09:27:09.6466905Z βš–οΈ  File content is the same, doing nothing: includes/functions-formatting.php
2021-03-07T09:27:09.6467989Z βš–οΈ  File content is the same, doing nothing: includes/functions-geo.php
2021-03-07T09:27:09.6469001Z βš–οΈ  File content is the same, doing nothing: includes/functions-html.php
2021-03-07T09:27:09.6470035Z βš–οΈ  File content is the same, doing nothing: includes/functions-http.php
2021-03-07T09:27:09.6471384Z βš–οΈ  File content is the same, doing nothing: includes/functions-infos.php
2021-03-07T09:27:09.6472484Z βš–οΈ  File content is the same, doing nothing: includes/functions-install.php
2021-03-07T09:27:09.6473530Z βš–οΈ  File content is the same, doing nothing: includes/functions-kses.php
2021-03-07T09:27:09.6474561Z βš–οΈ  File content is the same, doing nothing: includes/functions-l10n.php
2021-03-07T09:27:09.6475590Z βš–οΈ  File content is the same, doing nothing: includes/functions-links.php
2021-03-07T09:27:09.6476650Z βš–οΈ  File content is the same, doing nothing: includes/functions-options.php
2021-03-07T09:27:09.6477646Z πŸ” File replace: includes/functions-plugins.php
2021-03-07T09:27:09.6479254Z βš–οΈ  File content is the same, doing nothing: includes/functions-shorturls.php
2021-03-07T09:27:09.6480860Z βš–οΈ  File content is the same, doing nothing: includes/functions-upgrade.php
2021-03-07T09:27:09.6481852Z πŸ” File replace: includes/functions.php
2021-03-07T09:27:09.6483230Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_.gif
2021-03-07T09:27:09.6484556Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_a1.gif
2021-03-07T09:27:09.6485503Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_a2.gif
2021-03-07T09:27:09.6486424Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ac.gif
2021-03-07T09:27:09.6487323Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ad.gif
2021-03-07T09:27:09.6488253Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ae.gif
2021-03-07T09:27:09.6489544Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_af.gif
2021-03-07T09:27:09.6490998Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ag.gif
2021-03-07T09:27:09.6492283Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ai.gif
2021-03-07T09:27:09.6493234Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_al.gif
2021-03-07T09:27:09.6494395Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_am.gif
2021-03-07T09:27:09.6495376Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_an.gif
2021-03-07T09:27:09.6496340Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ao.gif
2021-03-07T09:27:09.6497294Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ap.gif
2021-03-07T09:27:09.6498222Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_aq.gif
2021-03-07T09:27:09.6499566Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ar.gif
2021-03-07T09:27:09.6501084Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_as.gif
2021-03-07T09:27:09.6502129Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_at.gif
2021-03-07T09:27:09.6503991Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_au.gif
2021-03-07T09:27:09.6505406Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_aw.gif
2021-03-07T09:27:09.6506801Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ax.gif
2021-03-07T09:27:09.6507964Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_az.gif
2021-03-07T09:27:09.6509052Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ba.gif
2021-03-07T09:27:09.6510141Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bb.gif
2021-03-07T09:27:09.6511212Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bd.gif
2021-03-07T09:27:09.6512462Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_be.gif
2021-03-07T09:27:09.6514127Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bf.gif
2021-03-07T09:27:09.6515086Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bg.gif
2021-03-07T09:27:09.6516062Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bh.gif
2021-03-07T09:27:09.6517044Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bi.gif
2021-03-07T09:27:09.6518553Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bj.gif
2021-03-07T09:27:09.6519936Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bl.gif
2021-03-07T09:27:09.6520914Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bm.gif
2021-03-07T09:27:09.6521892Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bn.gif
2021-03-07T09:27:09.6522853Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bo.gif
2021-03-07T09:27:09.6523837Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_br.gif
2021-03-07T09:27:09.6524816Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bs.gif
2021-03-07T09:27:09.6525779Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bt.gif
2021-03-07T09:27:09.6526942Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bv.gif
2021-03-07T09:27:09.6528446Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bw.gif
2021-03-07T09:27:09.6529532Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bx.gif
2021-03-07T09:27:09.6530526Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_by.gif
2021-03-07T09:27:09.6531525Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bz.gif
2021-03-07T09:27:09.6532759Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ca.gif
2021-03-07T09:27:09.6533746Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cc.gif
2021-03-07T09:27:09.6534756Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cd.gif
2021-03-07T09:27:09.6535767Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cf.gif
2021-03-07T09:27:09.6536945Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cg.gif
2021-03-07T09:27:09.6538128Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ch.gif
2021-03-07T09:27:09.6539204Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ci.gif
2021-03-07T09:27:09.6540248Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ck.gif
2021-03-07T09:27:09.6541268Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cl.gif
2021-03-07T09:27:09.6542573Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cm.gif
2021-03-07T09:27:09.6543673Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cn.gif
2021-03-07T09:27:09.6544672Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_co.gif
2021-03-07T09:27:09.6549117Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cr.gif
2021-03-07T09:27:09.6550248Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cs.gif
2021-03-07T09:27:09.6551325Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cu.gif
2021-03-07T09:27:09.6552419Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cv.gif
2021-03-07T09:27:09.6553791Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cx.gif
2021-03-07T09:27:09.6555092Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cy.gif
2021-03-07T09:27:09.6556400Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cz.gif
2021-03-07T09:27:09.6557634Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_de.gif
2021-03-07T09:27:09.6559003Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_dj.gif
2021-03-07T09:27:09.6560054Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_dk.gif
2021-03-07T09:27:09.6561114Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_dm.gif
2021-03-07T09:27:09.6562158Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_do.gif
2021-03-07T09:27:09.6563185Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_dz.gif
2021-03-07T09:27:09.6564236Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ec.gif
2021-03-07T09:27:09.6565533Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ee.gif
2021-03-07T09:27:09.6566578Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_eg.gif
2021-03-07T09:27:09.6567628Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_eh.gif
2021-03-07T09:27:09.6568681Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_er.gif
2021-03-07T09:27:09.6569709Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_es.gif
2021-03-07T09:27:09.6570758Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_et.gif
2021-03-07T09:27:09.6571814Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_eu.gif
2021-03-07T09:27:09.6572850Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fi.gif
2021-03-07T09:27:09.6573902Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fj.gif
2021-03-07T09:27:09.6574944Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fk.gif
2021-03-07T09:27:09.6576088Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fm.gif
2021-03-07T09:27:09.6577131Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fo.gif
2021-03-07T09:27:09.6578180Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fr.gif
2021-03-07T09:27:09.6579227Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fx.gif
2021-03-07T09:27:09.6580350Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ga.gif
2021-03-07T09:27:09.6581565Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gb.gif
2021-03-07T09:27:09.6583736Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gd.gif
2021-03-07T09:27:09.6584773Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ge.gif
2021-03-07T09:27:09.6585792Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gf.gif
2021-03-07T09:27:09.6586928Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gg.gif
2021-03-07T09:27:09.6587994Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gh.gif
2021-03-07T09:27:09.6589217Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gi.gif
2021-03-07T09:27:09.6590747Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gl.gif
2021-03-07T09:27:09.6592329Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gm.gif
2021-03-07T09:27:09.6593366Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gn.gif
2021-03-07T09:27:09.6594409Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gp.gif
2021-03-07T09:27:09.6595463Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gq.gif
2021-03-07T09:27:09.6596487Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gr.gif
2021-03-07T09:27:09.6597534Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gs.gif
2021-03-07T09:27:09.6598803Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gt.gif
2021-03-07T09:27:09.6599890Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gu.gif
2021-03-07T09:27:09.6601135Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gw.gif
2021-03-07T09:27:09.6602216Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gy.gif
2021-03-07T09:27:09.6603361Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_hk.gif
2021-03-07T09:27:09.6604443Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_hm.gif
2021-03-07T09:27:09.6605738Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_hn.gif
2021-03-07T09:27:09.6606784Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_hr.gif
2021-03-07T09:27:09.6607993Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ht.gif
2021-03-07T09:27:09.6609074Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_hu.gif
2021-03-07T09:27:09.6610713Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_id.gif
2021-03-07T09:27:09.6612125Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ie.gif
2021-03-07T09:27:09.6613293Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_il.gif
2021-03-07T09:27:09.6614373Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_im.gif
2021-03-07T09:27:09.6615430Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_in.gif
2021-03-07T09:27:09.6616505Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_io.gif
2021-03-07T09:27:09.6617584Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_iq.gif
2021-03-07T09:27:09.6618661Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ir.gif
2021-03-07T09:27:09.6619723Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_is.gif
2021-03-07T09:27:09.6620795Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_it.gif
2021-03-07T09:27:09.6621948Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_je.gif
2021-03-07T09:27:09.6623346Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_jm.gif
2021-03-07T09:27:09.6624442Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_jo.gif
2021-03-07T09:27:09.6625525Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_jp.gif
2021-03-07T09:27:09.6626620Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ke.gif
2021-03-07T09:27:09.6627709Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kg.gif
2021-03-07T09:27:09.6628788Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kh.gif
2021-03-07T09:27:09.6629866Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ki.gif
2021-03-07T09:27:09.6630935Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_km.gif
2021-03-07T09:27:09.6632094Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kn.gif
2021-03-07T09:27:09.6633214Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kp.gif
2021-03-07T09:27:09.6634297Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kr.gif
2021-03-07T09:27:09.6635410Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kw.gif
2021-03-07T09:27:09.6636490Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ky.gif
2021-03-07T09:27:09.6637552Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kz.gif
2021-03-07T09:27:09.6638630Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_la.gif
2021-03-07T09:27:09.6639707Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lb.gif
2021-03-07T09:27:09.6640762Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lc.gif
2021-03-07T09:27:09.6642180Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_le.gif
2021-03-07T09:27:09.6643478Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_li.gif
2021-03-07T09:27:09.6644763Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lk.gif
2021-03-07T09:27:09.6645782Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lr.gif
2021-03-07T09:27:09.6646827Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ls.gif
2021-03-07T09:27:09.6647871Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lt.gif
2021-03-07T09:27:09.6648898Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lu.gif
2021-03-07T09:27:09.6650213Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lv.gif
2021-03-07T09:27:09.6651409Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ly.gif
2021-03-07T09:27:09.6652471Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ma.gif
2021-03-07T09:27:09.6653551Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mc.gif
2021-03-07T09:27:09.6654869Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_md.gif
2021-03-07T09:27:09.6655959Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_me.gif
2021-03-07T09:27:09.6657016Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mf.gif
2021-03-07T09:27:09.6658098Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mg.gif
2021-03-07T09:27:09.6659295Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mh.gif
2021-03-07T09:27:09.6660354Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mk.gif
2021-03-07T09:27:09.6661599Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ml.gif
2021-03-07T09:27:09.6663153Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mm.gif
2021-03-07T09:27:09.6664220Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mn.gif
2021-03-07T09:27:09.6665305Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mo.gif
2021-03-07T09:27:09.6666424Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mp.gif
2021-03-07T09:27:09.6667488Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mq.gif
2021-03-07T09:27:09.6668709Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mr.gif
2021-03-07T09:27:09.6670201Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ms.gif
2021-03-07T09:27:09.6671493Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mt.gif
2021-03-07T09:27:09.6672559Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mu.gif
2021-03-07T09:27:09.6673598Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mv.gif
2021-03-07T09:27:09.6674637Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mw.gif
2021-03-07T09:27:09.6675662Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mx.gif
2021-03-07T09:27:09.6676729Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_my.gif
2021-03-07T09:27:09.6677895Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mz.gif
2021-03-07T09:27:09.6678972Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_na.gif
2021-03-07T09:27:09.6680029Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_nc.gif
2021-03-07T09:27:09.6681071Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ne.gif
2021-03-07T09:27:09.6682447Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_nf.gif
2021-03-07T09:27:09.6683609Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ng.gif
2021-03-07T09:27:09.6684617Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ni.gif
2021-03-07T09:27:09.6685624Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_nl.gif
2021-03-07T09:27:09.6686606Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_no.gif
2021-03-07T09:27:09.6687969Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_np.gif
2021-03-07T09:27:09.6689033Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_nr.gif
2021-03-07T09:27:09.6690023Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_nu.gif
2021-03-07T09:27:09.6691027Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_nz.gif
2021-03-07T09:27:09.6692033Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_o1.gif
2021-03-07T09:27:09.6693009Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_om.gif
2021-03-07T09:27:09.6694027Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pa.gif
2021-03-07T09:27:09.6695041Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pe.gif
2021-03-07T09:27:09.6696058Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pf.gif
2021-03-07T09:27:09.6697046Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pg.gif
2021-03-07T09:27:09.6698081Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ph.gif
2021-03-07T09:27:09.6699471Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pk.gif
2021-03-07T09:27:09.6700507Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pl.gif
2021-03-07T09:27:09.6702955Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pm.gif
2021-03-07T09:27:09.6704108Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pn.gif
2021-03-07T09:27:09.6705172Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pr.gif
2021-03-07T09:27:09.6706259Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ps.gif
2021-03-07T09:27:09.6708057Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pt.gif
2021-03-07T09:27:09.6709072Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pw.gif
2021-03-07T09:27:09.6710085Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_py.gif
2021-03-07T09:27:09.6711114Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_qa.gif
2021-03-07T09:27:09.6712125Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_re.gif
2021-03-07T09:27:09.6713121Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ro.gif
2021-03-07T09:27:09.6714121Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_rs.gif
2021-03-07T09:27:09.6715121Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ru.gif
2021-03-07T09:27:09.6716107Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_rw.gif
2021-03-07T09:27:09.6717110Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sa.gif
2021-03-07T09:27:09.6718344Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sb.gif
2021-03-07T09:27:09.6719565Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sc.gif
2021-03-07T09:27:09.6720626Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sd.gif
2021-03-07T09:27:09.6721988Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_se.gif
2021-03-07T09:27:09.6723059Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sg.gif
2021-03-07T09:27:09.6724064Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sh.gif
2021-03-07T09:27:09.6725076Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_si.gif
2021-03-07T09:27:09.6726082Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sj.gif
2021-03-07T09:27:09.6727068Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sk.gif
2021-03-07T09:27:09.6728069Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sl.gif
2021-03-07T09:27:09.6729072Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sm.gif
2021-03-07T09:27:09.6730050Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sn.gif
2021-03-07T09:27:09.6731251Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_so.gif
2021-03-07T09:27:09.6732265Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sr.gif
2021-03-07T09:27:09.6733252Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_st.gif
2021-03-07T09:27:09.6734262Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_su.gif
2021-03-07T09:27:09.6735263Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sv.gif
2021-03-07T09:27:09.6736269Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sy.gif
2021-03-07T09:27:09.6737252Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sz.gif
2021-03-07T09:27:09.6738263Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tc.gif
2021-03-07T09:27:09.6739265Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_td.gif
2021-03-07T09:27:09.6740247Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tf.gif
2021-03-07T09:27:09.6741448Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tg.gif
2021-03-07T09:27:09.6742642Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_th.gif
2021-03-07T09:27:09.6743659Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tj.gif
2021-03-07T09:27:09.6744635Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tk.gif
2021-03-07T09:27:09.6745598Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tl.gif
2021-03-07T09:27:09.6746550Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tm.gif
2021-03-07T09:27:09.6747524Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tn.gif
2021-03-07T09:27:09.6748492Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_to.gif
2021-03-07T09:27:09.6749462Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tp.gif
2021-03-07T09:27:09.6751013Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tr.gif
2021-03-07T09:27:09.6752414Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tt.gif
2021-03-07T09:27:09.6753424Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tv.gif
2021-03-07T09:27:09.6754399Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tw.gif
2021-03-07T09:27:09.6755602Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tz.gif
2021-03-07T09:27:09.6756639Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ua.gif
2021-03-07T09:27:09.6757866Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ug.gif
2021-03-07T09:27:09.6759200Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_uk.gif
2021-03-07T09:27:09.6760195Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_um.gif
2021-03-07T09:27:09.6761171Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_us.gif
2021-03-07T09:27:09.6762184Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_uy.gif
2021-03-07T09:27:09.6763321Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_uz.gif
2021-03-07T09:27:09.6764395Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_va.gif
2021-03-07T09:27:09.6765378Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_vc.gif
2021-03-07T09:27:09.6766386Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ve.gif
2021-03-07T09:27:09.6767392Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_vg.gif
2021-03-07T09:27:09.6768814Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_vi.gif
2021-03-07T09:27:09.6770185Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_vn.gif
2021-03-07T09:27:09.6771181Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_vu.gif
2021-03-07T09:27:09.6772162Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_wf.gif
2021-03-07T09:27:09.6773539Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ws.gif
2021-03-07T09:27:09.6774594Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ye.gif
2021-03-07T09:27:09.6775637Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_yt.gif
2021-03-07T09:27:09.6776657Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_yu.gif
2021-03-07T09:27:09.6777694Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_za.gif
2021-03-07T09:27:09.6778736Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_zm.gif
2021-03-07T09:27:09.6779816Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_zr.gif
2021-03-07T09:27:09.6780868Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_zw.gif
2021-03-07T09:27:09.6782053Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_zz.gif
2021-03-07T09:27:09.6783486Z βš–οΈ  File content is the same, doing nothing: includes/geo/GeoLite2-Country.mmdb
2021-03-07T09:27:09.6784485Z πŸ—‘οΈ  Delete: includes/geo/README.md    
2021-03-07T09:27:09.6785585Z βš–οΈ  File content is the same, doing nothing: includes/load-yourls.php
2021-03-07T09:27:09.6786537Z πŸ—‘οΈ  Delete: includes/vendor/aura/sql/README.md    
2021-03-07T09:27:09.6787963Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/AbstractExtendedPdo.php
2021-03-07T09:27:09.6789322Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/ConnectionLocator.php
2021-03-07T09:27:09.6790798Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/ConnectionLocatorInterface.php
2021-03-07T09:27:09.6792172Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/DecoratedPdo.php
2021-03-07T09:27:09.6793359Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception.php
2021-03-07T09:27:09.6794633Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception/CannotBindValue.php
2021-03-07T09:27:09.6796028Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception/CannotDisconnect.php
2021-03-07T09:27:09.6797450Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception/ConnectionNotFound.php
2021-03-07T09:27:09.6798866Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception/MissingParameter.php
2021-03-07T09:27:09.6800161Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/ExtendedPdo.php
2021-03-07T09:27:09.6802012Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/ExtendedPdoInterface.php
2021-03-07T09:27:09.6803488Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/AbstractParser.php
2021-03-07T09:27:09.6805134Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/MysqlParser.php
2021-03-07T09:27:09.6806770Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/NullParser.php
2021-03-07T09:27:09.6808350Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/ParserInterface.php
2021-03-07T09:27:09.6809848Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/PgsqlParser.php
2021-03-07T09:27:09.6811226Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/SqliteParser.php
2021-03-07T09:27:09.6812584Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/SqlsrvParser.php
2021-03-07T09:27:09.6814076Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/PdoInterface.php
2021-03-07T09:27:09.6815393Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Profiler/MemoryLogger.php
2021-03-07T09:27:09.6816690Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Profiler/Profiler.php
2021-03-07T09:27:09.6818069Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Profiler/ProfilerInterface.php
2021-03-07T09:27:09.6819553Z βš–οΈ  File content is the same, doing nothing: includes/vendor/autoload.php
2021-03-07T09:27:09.6820754Z βš–οΈ  File content is the same, doing nothing: includes/vendor/build-script/yourls-build.sh
2021-03-07T09:27:09.6822167Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/autoload_classmap.php
2021-03-07T09:27:09.6823608Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/autoload_files.php
2021-03-07T09:27:09.6824841Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/autoload_namespaces.php
2021-03-07T09:27:09.6826034Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/autoload_psr4.php
2021-03-07T09:27:09.6827200Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/autoload_real.php
2021-03-07T09:27:09.6828944Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/autoload_static.php
2021-03-07T09:27:09.6830551Z πŸ—‘οΈ  Delete: includes/vendor/composer/ca-bundle/LICENSE    
2021-03-07T09:27:09.6831738Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/ca-bundle/phpstan.neon.dist
2021-03-07T09:27:09.6833065Z πŸ—‘οΈ  Delete: includes/vendor/composer/ca-bundle/README.md    
2021-03-07T09:27:09.6834222Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/ca-bundle/res/cacert.pem
2021-03-07T09:27:09.6835775Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/ca-bundle/src/CaBundle.php
2021-03-07T09:27:09.6837094Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/ClassLoader.php
2021-03-07T09:27:09.6838371Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/installed.json
2021-03-07T09:27:09.6839723Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/installed.php
2021-03-07T09:27:09.6841016Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/InstalledVersions.php
2021-03-07T09:27:09.6842306Z πŸ—‘οΈ  Delete: includes/vendor/composer/LICENSE    
2021-03-07T09:27:09.6843434Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/platform_check.php
2021-03-07T09:27:09.6844563Z πŸ—‘οΈ  Delete: includes/vendor/geoip2/geoip2/README.md    
2021-03-07T09:27:09.6845749Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Database/Reader.php
2021-03-07T09:27:09.6847660Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php
2021-03-07T09:27:09.6849560Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php
2021-03-07T09:27:09.6851495Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php
2021-03-07T09:27:09.6852978Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/HttpException.php
2021-03-07T09:27:09.6854885Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php
2021-03-07T09:27:09.6856891Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php
2021-03-07T09:27:09.6859430Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/AbstractModel.php
2021-03-07T09:27:09.6860875Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/AnonymousIp.php
2021-03-07T09:27:09.6862192Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Asn.php
2021-03-07T09:27:09.6863700Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/City.php
2021-03-07T09:27:09.6865544Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/ConnectionType.php
2021-03-07T09:27:09.6866883Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Country.php
2021-03-07T09:27:09.6868680Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Domain.php
2021-03-07T09:27:09.6870274Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Enterprise.php
2021-03-07T09:27:09.6871647Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Insights.php
2021-03-07T09:27:09.6872984Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Isp.php
2021-03-07T09:27:09.6874369Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/ProviderInterface.php
2021-03-07T09:27:09.6875927Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php
2021-03-07T09:27:09.6877453Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/AbstractRecord.php
2021-03-07T09:27:09.6878856Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/City.php
2021-03-07T09:27:09.6880252Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Continent.php
2021-03-07T09:27:09.6881653Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Country.php
2021-03-07T09:27:09.6883158Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Location.php
2021-03-07T09:27:09.6884457Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/MaxMind.php
2021-03-07T09:27:09.6885960Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Postal.php
2021-03-07T09:27:09.6887404Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php
2021-03-07T09:27:09.6889057Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Subdivision.php
2021-03-07T09:27:09.6890365Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Traits.php
2021-03-07T09:27:09.6891585Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Util.php
2021-03-07T09:27:09.6892867Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/WebService/Client.php
2021-03-07T09:27:09.6894226Z βš–οΈ  File content is the same, doing nothing: includes/vendor/jakeasmith/http_build_url/src/http_build_url.php
2021-03-07T09:27:09.6895378Z πŸ—‘οΈ  Delete: includes/vendor/maxmind-db/reader/README.md    
2021-03-07T09:27:09.6896559Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php
2021-03-07T09:27:09.6897959Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php
2021-03-07T09:27:09.6899621Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php
2021-03-07T09:27:09.6901268Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php
2021-03-07T09:27:09.6903158Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php
2021-03-07T09:27:09.6904686Z πŸ—‘οΈ  Delete: includes/vendor/maxmind/web-service-common/README.md    
2021-03-07T09:27:09.6906473Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php
2021-03-07T09:27:09.6908591Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/HttpException.php
2021-03-07T09:27:09.6910366Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php
2021-03-07T09:27:09.6912222Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php
2021-03-07T09:27:09.6914233Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php
2021-03-07T09:27:09.6916198Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php
2021-03-07T09:27:09.6918396Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php
2021-03-07T09:27:09.6920327Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php
2021-03-07T09:27:09.6921997Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/WebService/Client.php
2021-03-07T09:27:09.6923722Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php
2021-03-07T09:27:09.6925300Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/WebService/Http/Request.php
2021-03-07T09:27:09.6926916Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php
2021-03-07T09:27:09.6928251Z πŸ—‘οΈ  Delete: includes/vendor/ozh/bookmarkletgen/README.md    
2021-03-07T09:27:09.6929556Z βš–οΈ  File content is the same, doing nothing: includes/vendor/ozh/bookmarkletgen/src/Ozh/Bookmarkletgen/Bookmarkletgen.php
2021-03-07T09:27:09.6930759Z πŸ—‘οΈ  Delete: includes/vendor/ozh/phpass/README.md    
2021-03-07T09:27:09.6931895Z βš–οΈ  File content is the same, doing nothing: includes/vendor/ozh/phpass/src/Ozh/Phpass/PasswordHash.php
2021-03-07T09:27:09.6932951Z πŸ—‘οΈ  Delete: includes/vendor/pomo/pomo/README.md    
2021-03-07T09:27:09.6933933Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/MO.php
2021-03-07T09:27:09.6935121Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Parser/PluralForms.php
2021-03-07T09:27:09.6936283Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/PO.php
2021-03-07T09:27:09.6937545Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/CachedFileReader.php
2021-03-07T09:27:09.6939020Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/CachedIntFileReader.php
2021-03-07T09:27:09.6940392Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/FileReader.php
2021-03-07T09:27:09.6941652Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/NOOPReader.php
2021-03-07T09:27:09.6943426Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/Reader.php
2021-03-07T09:27:09.6944688Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/StreamInterface.php
2021-03-07T09:27:09.6945966Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/StringReader.php
2021-03-07T09:27:09.6947326Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/EntryTranslations.php
2021-03-07T09:27:09.6948781Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/GettextTranslations.php
2021-03-07T09:27:09.6950352Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/NOOPTranslations.php
2021-03-07T09:27:09.6952053Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/Translations.php
2021-03-07T09:27:09.6953641Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/TranslationsInterface.php
2021-03-07T09:27:09.6955299Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/AbstractLogger.php
2021-03-07T09:27:09.6957082Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/InvalidArgumentException.php
2021-03-07T09:27:09.6958736Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LoggerAwareInterface.php
2021-03-07T09:27:09.6960117Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LoggerAwareTrait.php
2021-03-07T09:27:09.6961439Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LoggerInterface.php
2021-03-07T09:27:09.6962869Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LoggerTrait.php
2021-03-07T09:27:09.6964074Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LogLevel.php
2021-03-07T09:27:09.6965263Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/NullLogger.php
2021-03-07T09:27:09.6966611Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/Test/DummyTest.php
2021-03-07T09:27:09.6967910Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php
2021-03-07T09:27:09.6969210Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/Test/TestLogger.php
2021-03-07T09:27:09.6970206Z πŸ—‘οΈ  Delete: includes/vendor/psr/log/README.md    
2021-03-07T09:27:09.6971229Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests.php
2021-03-07T09:27:09.6972495Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Auth.php
2021-03-07T09:27:09.6973768Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Auth/Basic.php
2021-03-07T09:27:09.6975041Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Cookie.php
2021-03-07T09:27:09.6976330Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Cookie/Jar.php
2021-03-07T09:27:09.6977975Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception.php
2021-03-07T09:27:09.6979385Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP.php
2021-03-07T09:27:09.6980726Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/304.php
2021-03-07T09:27:09.6982087Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/305.php
2021-03-07T09:27:09.6983973Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/306.php
2021-03-07T09:27:09.6985307Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/400.php
2021-03-07T09:27:09.6986796Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/401.php
2021-03-07T09:27:09.6988101Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/402.php
2021-03-07T09:27:09.6989408Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/403.php
2021-03-07T09:27:09.6990700Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/404.php
2021-03-07T09:27:09.6992116Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/405.php
2021-03-07T09:27:09.6993665Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/406.php
2021-03-07T09:27:09.6994987Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/407.php
2021-03-07T09:27:09.6996695Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/408.php
2021-03-07T09:27:09.6998684Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/409.php
2021-03-07T09:27:09.7000222Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/410.php
2021-03-07T09:27:09.7002147Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/411.php
2021-03-07T09:27:09.7003723Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/412.php
2021-03-07T09:27:09.7005383Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/413.php
2021-03-07T09:27:09.7006911Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/414.php
2021-03-07T09:27:09.7008379Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/415.php
2021-03-07T09:27:09.7010020Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/416.php
2021-03-07T09:27:09.7011682Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/417.php
2021-03-07T09:27:09.7013152Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/418.php
2021-03-07T09:27:09.7015934Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/428.php
2021-03-07T09:27:09.7017477Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/429.php
2021-03-07T09:27:09.7018979Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/431.php
2021-03-07T09:27:09.7020449Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/500.php
2021-03-07T09:27:09.7021936Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/501.php
2021-03-07T09:27:09.7023653Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/502.php
2021-03-07T09:27:09.7025133Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/503.php
2021-03-07T09:27:09.7026633Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/504.php
2021-03-07T09:27:09.7028293Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/505.php
2021-03-07T09:27:09.7030324Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/511.php
2021-03-07T09:27:09.7031900Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php
2021-03-07T09:27:09.7033812Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/Transport.php
2021-03-07T09:27:09.7035372Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/Transport/cURL.php
2021-03-07T09:27:09.7037073Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Hooker.php
2021-03-07T09:27:09.7038323Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Hooks.php
2021-03-07T09:27:09.7040010Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/IDNAEncoder.php
2021-03-07T09:27:09.7041688Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/IPv6.php
2021-03-07T09:27:09.7043331Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/IRI.php
2021-03-07T09:27:09.7044877Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Proxy.php
2021-03-07T09:27:09.7046939Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Proxy/HTTP.php
2021-03-07T09:27:09.7048632Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Response.php
2021-03-07T09:27:09.7049916Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Response/Headers.php
2021-03-07T09:27:09.7051563Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Session.php
2021-03-07T09:27:09.7052968Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/SSL.php
2021-03-07T09:27:09.7054795Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Transport.php
2021-03-07T09:27:09.7056114Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Transport/cacert.pem
2021-03-07T09:27:09.7057416Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Transport/cURL.php
2021-03-07T09:27:09.7058749Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Transport/fsockopen.php
2021-03-07T09:27:09.7060272Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Utility/CaseInsensitiveDictionary.php
2021-03-07T09:27:09.7061886Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Utility/FilteredIterator.php
2021-03-07T09:27:09.7063636Z πŸ—‘οΈ  Delete: includes/vendor/rmccue/requests/README.md    
2021-03-07T09:27:09.7064685Z πŸ—‘οΈ  Delete: includes/vendor/spatie/array-to-xml/README.md    
2021-03-07T09:27:09.7065753Z βš–οΈ  File content is the same, doing nothing: includes/vendor/spatie/array-to-xml/src/ArrayToXml.php
2021-03-07T09:27:09.7066971Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/bootstrap.php
2021-03-07T09:27:09.7068234Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/bootstrap80.php
2021-03-07T09:27:09.7069425Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Idn.php
2021-03-07T09:27:09.7070592Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Info.php
2021-03-07T09:27:09.7071657Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-intl-idn/LICENSE    
2021-03-07T09:27:09.7072748Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-intl-idn/README.md    
2021-03-07T09:27:09.7074028Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/deviation.php
2021-03-07T09:27:09.7075484Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php
2021-03-07T09:27:09.7077330Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php
2021-03-07T09:27:09.7078794Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php
2021-03-07T09:27:09.7080289Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php
2021-03-07T09:27:09.7081732Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/ignored.php
2021-03-07T09:27:09.7083252Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/mapped.php
2021-03-07T09:27:09.7084742Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/Regex.php
2021-03-07T09:27:09.7086760Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/virama.php
2021-03-07T09:27:09.7088331Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/bootstrap.php
2021-03-07T09:27:09.7090249Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php
2021-03-07T09:27:09.7091465Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-intl-normalizer/LICENSE    
2021-03-07T09:27:09.7092876Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Normalizer.php
2021-03-07T09:27:09.7094141Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-intl-normalizer/README.md    
2021-03-07T09:27:09.7095510Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php
2021-03-07T09:27:09.7097163Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php
2021-03-07T09:27:09.7098951Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php
2021-03-07T09:27:09.7101257Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php
2021-03-07T09:27:09.7103687Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php
2021-03-07T09:27:09.7105975Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/bootstrap.php
2021-03-07T09:27:09.7107093Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-mbstring/LICENSE    
2021-03-07T09:27:09.7108201Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/Mbstring.php
2021-03-07T09:27:09.7109305Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-mbstring/README.md    
2021-03-07T09:27:09.7110518Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
2021-03-07T09:27:09.7111953Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php
2021-03-07T09:27:09.7113414Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php
2021-03-07T09:27:09.7114711Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-php72/bootstrap.php
2021-03-07T09:27:09.7115767Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-php72/LICENSE    
2021-03-07T09:27:09.7116801Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-php72/Php72.php
2021-03-07T09:27:09.7117984Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-php72/README.md    
2021-03-07T09:27:09.7118865Z πŸ” File replace: includes/version.php
2021-03-07T09:27:09.7119669Z βš–οΈ  File content is the same, doing nothing: js/clipboard.min.js
2021-03-07T09:27:09.7120509Z βš–οΈ  File content is the same, doing nothing: js/common.js
2021-03-07T09:27:09.7121292Z βš–οΈ  File content is the same, doing nothing: js/infos.js
2021-03-07T09:27:09.7122060Z βš–οΈ  File content is the same, doing nothing: js/insert.js
2021-03-07T09:27:09.7122916Z βš–οΈ  File content is the same, doing nothing: js/jquery-3.5.1.min.js
2021-03-07T09:27:09.7123922Z βš–οΈ  File content is the same, doing nothing: js/jquery-3.tablesorter.min.js
2021-03-07T09:27:09.7125031Z βš–οΈ  File content is the same, doing nothing: js/jquery.cal.js
2021-03-07T09:27:09.7126281Z βš–οΈ  File content is the same, doing nothing: js/jquery.notifybar.js
2021-03-07T09:27:09.7127305Z βš–οΈ  File content is the same, doing nothing: js/share.js
2021-03-07T09:27:09.7128270Z βš–οΈ  File content is the same, doing nothing: js/tablesorte.js
2021-03-07T09:27:09.7129396Z πŸ—‘οΈ  Delete: LICENSE    
2021-03-07T09:27:09.7130185Z πŸ—‘οΈ  Delete: README.md    
2021-03-07T09:27:09.7130831Z πŸ—‘οΈ  Delete: sample-robots.txt    
2021-03-07T09:27:09.7131514Z πŸ—‘οΈ  Delete: tests/.htaccess    
2021-03-07T09:27:09.7132784Z βš–οΈ  File content is the same, doing nothing: tests/bootstrap.php
2021-03-07T09:27:09.7134407Z βš–οΈ  File content is the same, doing nothing: tests/data/auth/config-test-auth.php
2021-03-07T09:27:09.7135565Z βš–οΈ  File content is the same, doing nothing: tests/data/config/yourls-tests-config-ci.php
2021-03-07T09:27:09.7137941Z βš–οΈ  File content is the same, doing nothing: tests/data/config/yourls-tests-config-sample.php
2021-03-07T09:27:09.7139466Z βš–οΈ  File content is the same, doing nothing: tests/data/formatting/big5.txt
2021-03-07T09:27:09.7141027Z βš–οΈ  File content is the same, doing nothing: tests/data/formatting/utf-8.txt
2021-03-07T09:27:09.7142078Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/expected_empty.txt
2021-03-07T09:27:09.7144293Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/expected_fresh-YOURLS-content.txt
2021-03-07T09:27:09.7145447Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/expected_nofile.txt
2021-03-07T09:27:09.7146587Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/expected_old-YOURLS-content.txt
2021-03-07T09:27:09.7147765Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/expected_other-content.txt
2021-03-07T09:27:09.7148830Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/original_empty.txt
2021-03-07T09:27:09.7149954Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/original_fresh-YOURLS-content.txt
2021-03-07T09:27:09.7151580Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/original_old-YOURLS-content.txt
2021-03-07T09:27:09.7152956Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/original_other-content.txt
2021-03-07T09:27:09.7154338Z βš–οΈ  File content is the same, doing nothing: tests/data/pages/examplepage.php
2021-03-07T09:27:09.7155582Z βš–οΈ  File content is the same, doing nothing: tests/data/plugins/headers/header_incomplete.php
2021-03-07T09:27:09.7157052Z βš–οΈ  File content is the same, doing nothing: tests/data/plugins/headers/header_incorrect.php
2021-03-07T09:27:09.7158329Z βš–οΈ  File content is the same, doing nothing: tests/data/plugins/headers/header_missing.php
2021-03-07T09:27:09.7159476Z βž• Upload: tests/data/plugins/headers/header_nocomment.php
2021-03-07T09:27:09.7160958Z βš–οΈ  File content is the same, doing nothing: tests/data/plugins/headers/header_phpdoc.php
2021-03-07T09:27:09.7162564Z βš–οΈ  File content is the same, doing nothing: tests/data/plugins/headers/header_regular.php
2021-03-07T09:27:09.7163984Z βš–οΈ  File content is the same, doing nothing: tests/data/plugins/test-plugin/plugin.php
2021-03-07T09:27:09.7165114Z βš–οΈ  File content is the same, doing nothing: tests/data/pomo/fr_FR.mo
2021-03-07T09:27:09.7166438Z βš–οΈ  File content is the same, doing nothing: tests/data/pomo/fr_FR.po
2021-03-07T09:27:09.7168192Z βš–οΈ  File content is the same, doing nothing: tests/data/pomo/test-fr_FR.mo
2021-03-07T09:27:09.7169387Z βš–οΈ  File content is the same, doing nothing: tests/data/pomo/test-fr_FR.po
2021-03-07T09:27:09.7171255Z βš–οΈ  File content is the same, doing nothing: tests/includes/install.php
2021-03-07T09:27:09.7172555Z βš–οΈ  File content is the same, doing nothing: tests/includes/phpunit6-compat.php
2021-03-07T09:27:09.7173722Z βš–οΈ  File content is the same, doing nothing: tests/includes/utils.php
2021-03-07T09:27:09.7174814Z πŸ—‘οΈ  Delete: tests/README.md    
2021-03-07T09:27:09.7175844Z βš–οΈ  File content is the same, doing nothing: tests/tests/api/funcs.php
2021-03-07T09:27:09.7177490Z βš–οΈ  File content is the same, doing nothing: tests/tests/api/output.php
2021-03-07T09:27:09.7178606Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/auth.php
2021-03-07T09:27:09.7180101Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/login_API.php
2021-03-07T09:27:09.7181272Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/login_base.php
2021-03-07T09:27:09.7182421Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/login_cookie.php
2021-03-07T09:27:09.7183861Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/login_normal.php
2021-03-07T09:27:09.7185716Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/login_secure_time.php
2021-03-07T09:27:09.7187115Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/login_secure.php
2021-03-07T09:27:09.7188221Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/logout.php
2021-03-07T09:27:09.7189284Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/nonces.php
2021-03-07T09:27:09.7190401Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/signatures.php
2021-03-07T09:27:09.7191746Z βš–οΈ  File content is the same, doing nothing: tests/tests/db/db.php
2021-03-07T09:27:09.7192724Z βš–οΈ  File content is the same, doing nothing: tests/tests/db/misc.php
2021-03-07T09:27:09.7193729Z βš–οΈ  File content is the same, doing nothing: tests/tests/format/escaping.php
2021-03-07T09:27:09.7195268Z βš–οΈ  File content is the same, doing nothing: tests/tests/format/general.php
2021-03-07T09:27:09.7196377Z βš–οΈ  File content is the same, doing nothing: tests/tests/format/kses.php
2021-03-07T09:27:09.7197641Z βš–οΈ  File content is the same, doing nothing: tests/tests/format/sanitizing.php
2021-03-07T09:27:09.7198897Z βš–οΈ  File content is the same, doing nothing: tests/tests/format/timedates.php
2021-03-07T09:27:09.7199932Z βš–οΈ  File content is the same, doing nothing: tests/tests/format/urls.php
2021-03-07T09:27:09.7201152Z βš–οΈ  File content is the same, doing nothing: tests/tests/geoip/geoip.php
2021-03-07T09:27:09.7202267Z βš–οΈ  File content is the same, doing nothing: tests/tests/http/api-check.php
2021-03-07T09:27:09.7203399Z βš–οΈ  File content is the same, doing nothing: tests/tests/http/general.php
2021-03-07T09:27:09.7204508Z βš–οΈ  File content is the same, doing nothing: tests/tests/http/headers.php
2021-03-07T09:27:09.7205595Z βš–οΈ  File content is the same, doing nothing: tests/tests/http/misc.php
2021-03-07T09:27:09.7207293Z βš–οΈ  File content is the same, doing nothing: tests/tests/http/proxy.php
2021-03-07T09:27:09.7208320Z βš–οΈ  File content is the same, doing nothing: tests/tests/http/requests.php
2021-03-07T09:27:09.7209359Z βš–οΈ  File content is the same, doing nothing: tests/tests/install/htaccess.php
2021-03-07T09:27:09.7210416Z βš–οΈ  File content is the same, doing nothing: tests/tests/install/install.php
2021-03-07T09:27:09.7212022Z βš–οΈ  File content is the same, doing nothing: tests/tests/install/version.php
2021-03-07T09:27:09.7213064Z βš–οΈ  File content is the same, doing nothing: tests/tests/l10n/domain.php
2021-03-07T09:27:09.7214102Z βš–οΈ  File content is the same, doing nothing: tests/tests/l10n/formats.php
2021-03-07T09:27:09.7215155Z βš–οΈ  File content is the same, doing nothing: tests/tests/l10n/general.php
2021-03-07T09:27:09.7216378Z βš–οΈ  File content is the same, doing nothing: tests/tests/l10n/translations.php
2021-03-07T09:27:09.7217909Z βš–οΈ  File content is the same, doing nothing: tests/tests/links/yourls_links.php
2021-03-07T09:27:09.7219144Z βš–οΈ  File content is the same, doing nothing: tests/tests/options.php
2021-03-07T09:27:09.7220176Z βš–οΈ  File content is the same, doing nothing: tests/tests/pages/pages.php
2021-03-07T09:27:09.7221272Z βš–οΈ  File content is the same, doing nothing: tests/tests/plugins/actions.php
2021-03-07T09:27:09.7222512Z βš–οΈ  File content is the same, doing nothing: tests/tests/plugins/files.php
2021-03-07T09:27:09.7223973Z βš–οΈ  File content is the same, doing nothing: tests/tests/plugins/filters.php
2021-03-07T09:27:09.7224955Z πŸ” File replace: tests/tests/plugins/headers.php
2021-03-07T09:27:09.7225828Z βž• Upload: tests/tests/plugins/helpers.php
2021-03-07T09:27:09.7226672Z πŸ—‘οΈ  Delete: tests/tests/plugins/misc.php    
2021-03-07T09:27:09.7227966Z βž• Upload: tests/tests/plugins/pages.php
2021-03-07T09:27:09.7229306Z βš–οΈ  File content is the same, doing nothing: tests/tests/shorturl/shorturl.php
2021-03-07T09:27:09.7230341Z βš–οΈ  File content is the same, doing nothing: tests/tests/stats/misc.php
2021-03-07T09:27:09.7231344Z βš–οΈ  File content is the same, doing nothing: tests/tests/themes/themes.php
2021-03-07T09:27:09.7232357Z πŸ—‘οΈ  Delete: tests/tests/TODO.md    
2021-03-07T09:27:09.7233328Z βš–οΈ  File content is the same, doing nothing: tests/tests/utilities/get_request.php
2021-03-07T09:27:09.7234468Z βš–οΈ  File content is the same, doing nothing: tests/tests/utilities/next_decimal.php
2021-03-07T09:27:09.7235456Z πŸ—‘οΈ  Delete: user/config-sample.php    
2021-03-07T09:27:09.7236368Z βš–οΈ  File content is the same, doing nothing: user/index.html
2021-03-07T09:27:09.7237150Z πŸ“  Delete: user/languages    
2021-03-07T09:27:09.7238039Z βš–οΈ  File content is the same, doing nothing: user/languages/index.html
2021-03-07T09:27:09.7238859Z πŸ“  Delete: user/pages    
2021-03-07T09:27:09.7239775Z βš–οΈ  File content is the same, doing nothing: user/pages/examplepage.php
2021-03-07T09:27:09.7240842Z βš–οΈ  File content is the same, doing nothing: user/pages/index.html
2021-03-07T09:27:09.7241657Z πŸ“  Delete: user/plugins    
2021-03-07T09:27:09.7242620Z βš–οΈ  File content is the same, doing nothing: user/plugins/hyphens-in-urls/plugin.php
2021-03-07T09:27:09.7243864Z πŸ—‘οΈ  Delete: user/plugins/hyphens-in-urls/README.md    
2021-03-07T09:27:09.7244838Z βš–οΈ  File content is the same, doing nothing: user/plugins/index.html
2021-03-07T09:27:09.7245887Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_ants.png
2021-03-07T09:27:09.7246970Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_boobs.png
2021-03-07T09:27:09.7248091Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_circles.png
2021-03-07T09:27:09.7249210Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_cross.png
2021-03-07T09:27:09.7250694Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_diag.png
2021-03-07T09:27:09.7251895Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_fuzzy_bits.png
2021-03-07T09:27:09.7253093Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_fuzzy.png
2021-03-07T09:27:09.7254245Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_life.png
2021-03-07T09:27:09.7255581Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_yourls.png
2021-03-07T09:27:09.7256726Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/plugin.php
2021-03-07T09:27:09.7257710Z πŸ—‘οΈ  Delete: user/plugins/random-bg/README.md    
2021-03-07T09:27:09.7258768Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-shorturls/plugin.php
2021-03-07T09:27:09.7259868Z πŸ—‘οΈ  Delete: user/plugins/random-shorturls/README.md    
2021-03-07T09:27:09.7260960Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-page/plugin.php
2021-03-07T09:27:09.7262101Z πŸ—‘οΈ  Delete: user/plugins/sample-page/README.md    
2021-03-07T09:27:09.7263559Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-plugin/plugin.php
2021-03-07T09:27:09.7264591Z πŸ—‘οΈ  Delete: user/plugins/sample-plugin/README.md    
2021-03-07T09:27:09.7265642Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/css/toolbar.css
2021-03-07T09:27:09.7266868Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/img/close_button_red.gif
2021-03-07T09:27:09.7268226Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/img/close_button.gif
2021-03-07T09:27:09.7269417Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/img/favicon.gif
2021-03-07T09:27:09.7270618Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/img/toolbar_bg.png
2021-03-07T09:27:09.7271800Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/js/toolbar.js
2021-03-07T09:27:09.7273154Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/plugin.php
2021-03-07T09:27:09.7274192Z πŸ—‘οΈ  Delete: user/plugins/sample-toolbar/README.md    
2021-03-07T09:27:09.7275124Z βš–οΈ  File content is the same, doing nothing: yourls-api.php
2021-03-07T09:27:09.7276057Z βš–οΈ  File content is the same, doing nothing: yourls-go.php
2021-03-07T09:27:09.7276984Z βš–οΈ  File content is the same, doing nothing: yourls-infos.php
2021-03-07T09:27:09.7278007Z βš–οΈ  File content is the same, doing nothing: yourls-loader.php
2021-03-07T09:27:09.7278933Z ----------------------------------------------------------------
2021-03-07T09:27:09.7279583Z Making changes to 48 files to sync server state
2021-03-07T09:27:09.7280437Z Uploading: 6.75 kB -- Deleting: 88.6 kB -- Replacing: 70.7 kB
2021-03-07T09:27:09.7281277Z ----------------------------------------------------------------
2021-03-07T09:27:09.7282034Z uploading "tests/data/plugins/headers/header_nocomment.php"
2021-03-07T09:27:09.9344467Z Error 553 FileNameNotAllowed, you don't have access to upload that file
2021-03-07T09:27:09.9368363Z FTPError: 553 Can't open that file: No such file or directory
2021-03-07T09:27:09.9369673Z     at FTPContext._onControlSocketData (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3759:39)
2021-03-07T09:27:09.9371633Z     at Socket.<anonymous> (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3600:44)
2021-03-07T09:27:09.9372899Z     at Socket.emit (events.js:210:5)
2021-03-07T09:27:09.9373468Z     at addChunk (_stream_readable.js:309:12)
2021-03-07T09:27:09.9375131Z     at readableAddChunk (_stream_readable.js:286:13)
2021-03-07T09:27:09.9376266Z     at Socket.Readable.push (_stream_readable.js:224:10)
2021-03-07T09:27:09.9377223Z     at TCP.onStreamRead (internal/stream_base_commons.js:182:23) {
2021-03-07T09:27:09.9377943Z   name: 'FTPError',
2021-03-07T09:27:09.9378332Z   code: 553
2021-03-07T09:27:09.9378623Z }
2021-03-07T09:27:09.9380308Z FTPError: 553 Can't open that file: No such file or directory
2021-03-07T09:27:09.9381518Z     at FTPContext._onControlSocketData (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3759:39)
2021-03-07T09:27:09.9383794Z     at Socket.<anonymous> (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3600:44)
2021-03-07T09:27:09.9384603Z     at Socket.emit (events.js:210:5)
2021-03-07T09:27:09.9385311Z     at addChunk (_stream_readable.js:309:12)
2021-03-07T09:27:09.9386081Z     at readableAddChunk (_stream_readable.js:286:13)
2021-03-07T09:27:09.9387000Z     at Socket.Readable.push (_stream_readable.js:224:10)
2021-03-07T09:27:09.9387789Z     at TCP.onStreamRead (internal/stream_base_commons.js:182:23) {
2021-03-07T09:27:09.9388526Z   name: 'FTPError',
2021-03-07T09:27:09.9388899Z   code: 553
2021-03-07T09:27:09.9389226Z }
2021-03-07T09:27:09.9390006Z ----------------------------------------------------------------
2021-03-07T09:27:09.9390905Z Time spent hashing:               515 milliseconds
2021-03-07T09:27:09.9391705Z Time spent connecting to server:  936 milliseconds
2021-03-07T09:27:09.9392341Z Time spent deploying:             301 milliseconds (257 kB/second)
2021-03-07T09:27:09.9393063Z   - changing dirs:                197 milliseconds
2021-03-07T09:27:09.9394268Z   - logging:                      18 milliseconds
2021-03-07T09:27:09.9394926Z ----------------------------------------------------------------
2021-03-07T09:27:09.9395550Z Total time:                       2.7 seconds
2021-03-07T09:27:09.9396155Z ----------------------------------------------------------------
2021-03-07T09:27:09.9524614Z Post job cleanup.
2021-03-07T09:27:10.0624371Z [command]/usr/bin/git version
2021-03-07T09:27:10.0686951Z git version 2.30.1
2021-03-07T09:27:10.0720286Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-03-07T09:27:10.0753772Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-03-07T09:27:10.1008113Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-03-07T09:27:10.1035929Z http.https://github.com/.extraheader
2021-03-07T09:27:10.1045231Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2021-03-07T09:27:10.1081760Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2021-03-07T09:27:10.1347847Z Cleaning up orphan processes

Example for two files that should have been changed cPanel-Dateiverwaltung Version 3 - Google Chrome 2021-03-07 10 36 51

xannasavin commented 3 years ago

So I just created a "test.html" to the project root and it was correctly transfered to the server. Also removed. However, as said, all the changes above where not transfered...

SamKirkland commented 3 years ago

Few notes:

xannasavin commented 3 years ago

Hi @SamKirkland, thanks a lot for coming back and your input! I removed fetch depth and the ftp files from the workflow / project.

tests/data/plugins/headers/ exists in the project but is excluded from uploading to the server since that folder contains the unit tests for that project. Why are you asking?

Today I merged another PR that should update the favicon within the folder images (and some other), but on the server the "last updated" is again the 22.2.2021 - so the action ran again successfull but the file was not updated.

Few more strange things:

2021-03-13T10:48:46.6361298Z uploading "tests/data/plugins/headers/header_nocomment.php"

The folder "tests" is completely excluded, but the action tries to upload it and fails

It looks like this is doing some kind of dry run? Logging everything but doing nothing...

As said, I experienced the same in other projects, the shown one is just an example.

Raw Logs if needed:

2021-03-13T10:48:30.6912072Z ##[section]Starting: Request a runner to run this job
2021-03-13T10:48:31.0081150Z Can't find any online and idle self-hosted runner in current repository that matches the required labels: 'ubuntu-latest'
2021-03-13T10:48:31.0081231Z Can't find any online and idle self-hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-03-13T10:48:31.0081585Z Found online and idle hosted runner in current repository's account/organization that matches the required labels: 'ubuntu-latest'
2021-03-13T10:48:31.1118449Z ##[section]Finishing: Request a runner to run this job
2021-03-13T10:48:40.1167529Z Current runner version: '2.277.1'
2021-03-13T10:48:40.1195351Z ##[group]Operating System
2021-03-13T10:48:40.1196510Z Ubuntu
2021-03-13T10:48:40.1197045Z 20.04.2
2021-03-13T10:48:40.1197504Z LTS
2021-03-13T10:48:40.1198050Z ##[endgroup]
2021-03-13T10:48:40.1198753Z ##[group]Virtual Environment
2021-03-13T10:48:40.1199441Z Environment: ubuntu-20.04
2021-03-13T10:48:40.1200083Z Version: 20210302.0
2021-03-13T10:48:40.1201211Z Included Software: https://github.com/actions/virtual-environments/blob/ubuntu20/20210302.0/images/linux/Ubuntu2004-README.md
2021-03-13T10:48:40.1202727Z Image Release: https://github.com/actions/virtual-environments/releases/tag/ubuntu20%2F
2021-03-13T10:48:40.1203676Z ##[endgroup]
2021-03-13T10:48:40.1206013Z ##[group]GITHUB_TOKEN Permissions
2021-03-13T10:48:40.1207428Z Actions: write
2021-03-13T10:48:40.1208062Z Checks: write
2021-03-13T10:48:40.1208649Z Contents: write
2021-03-13T10:48:40.1209278Z Deployments: write
2021-03-13T10:48:40.1209972Z Issues: write
2021-03-13T10:48:40.1210610Z Metadata: read
2021-03-13T10:48:40.1211342Z OrganizationPackages: write
2021-03-13T10:48:40.1212060Z Packages: write
2021-03-13T10:48:40.1212644Z PullRequests: write
2021-03-13T10:48:40.1213381Z RepositoryProjects: write
2021-03-13T10:48:40.1214113Z SecurityEvents: write
2021-03-13T10:48:40.1214729Z Statuses: write
2021-03-13T10:48:40.1215472Z ##[endgroup]
2021-03-13T10:48:40.1218995Z Prepare workflow directory
2021-03-13T10:48:40.1933815Z Prepare all required actions
2021-03-13T10:48:40.1945922Z Getting action download info
2021-03-13T10:48:40.5737386Z Download action repository 'actions/checkout@v2.3.2'
2021-03-13T10:48:42.6633011Z Download action repository 'SamKirkland/FTP-Deploy-Action@4.0.0'
2021-03-13T10:48:43.0720957Z ##[group]Run actions/checkout@v2.3.2
2021-03-13T10:48:43.0721799Z with:
2021-03-13T10:48:43.0722364Z   repository: xannasavin/YOURLS
2021-03-13T10:48:43.0723396Z   token: ***
2021-03-13T10:48:43.0723929Z   ssh-strict: true
2021-03-13T10:48:43.0724549Z   persist-credentials: true
2021-03-13T10:48:43.0725185Z   clean: true
2021-03-13T10:48:43.0725711Z   fetch-depth: 1
2021-03-13T10:48:43.0726216Z   lfs: false
2021-03-13T10:48:43.0726732Z   submodules: false
2021-03-13T10:48:43.0727274Z ##[endgroup]
2021-03-13T10:48:43.4811074Z Syncing repository: xannasavin/YOURLS
2021-03-13T10:48:43.4812242Z ##[group]Getting Git version info
2021-03-13T10:48:43.4813301Z Working directory is '/home/runner/work/YOURLS/YOURLS'
2021-03-13T10:48:43.4946864Z [command]/usr/bin/git version
2021-03-13T10:48:43.5114001Z git version 2.30.1
2021-03-13T10:48:43.5115591Z ##[endgroup]
2021-03-13T10:48:43.5116470Z Deleting the contents of '/home/runner/work/YOURLS/YOURLS'
2021-03-13T10:48:43.5119207Z ##[group]Initializing the repository
2021-03-13T10:48:43.5120405Z [command]/usr/bin/git init /home/runner/work/YOURLS/YOURLS
2021-03-13T10:48:43.5192597Z hint: Using 'master' as the name for the initial branch. This default branch name
2021-03-13T10:48:43.5193839Z hint: is subject to change. To configure the initial branch name to use in all
2021-03-13T10:48:43.5194948Z hint: of your new repositories, which will suppress this warning, call:
2021-03-13T10:48:43.5195800Z hint: 
2021-03-13T10:48:43.5196849Z hint:  git config --global init.defaultBranch <name>
2021-03-13T10:48:43.5197655Z hint: 
2021-03-13T10:48:43.5198670Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2021-03-13T10:48:43.5200019Z hint: 'development'. The just-created branch can be renamed via this command:
2021-03-13T10:48:43.5200890Z hint: 
2021-03-13T10:48:43.5201704Z hint:  git branch -m <name>
2021-03-13T10:48:43.5214703Z Initialized empty Git repository in /home/runner/work/YOURLS/YOURLS/.git/
2021-03-13T10:48:43.5226095Z [command]/usr/bin/git remote add origin https://github.com/xannasavin/YOURLS
2021-03-13T10:48:43.5266460Z ##[endgroup]
2021-03-13T10:48:44.1640725Z ##[group]Disabling automatic garbage collection
2021-03-13T10:48:44.1642102Z [command]/usr/bin/git config --local gc.auto 0
2021-03-13T10:48:44.1642699Z ##[endgroup]
2021-03-13T10:48:44.1645650Z ##[group]Setting up auth
2021-03-13T10:48:44.1646723Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-03-13T10:48:44.1648430Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-03-13T10:48:44.1650094Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-03-13T10:48:44.1652405Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2021-03-13T10:48:44.1654375Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2021-03-13T10:48:44.1655278Z ##[endgroup]
2021-03-13T10:48:44.1655802Z ##[group]Fetching the repository
2021-03-13T10:48:44.1657506Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +9812e6f0be9755bf9e3d9e28778cdf4a7e63c591:refs/remotes/origin/master
2021-03-13T10:48:44.1658887Z remote: Enumerating objects: 848, done.        
2021-03-13T10:48:44.1659505Z remote: Counting objects:   0% (1/848)        
2021-03-13T10:48:44.1660059Z remote: Counting objects:   1% (9/848)        
2021-03-13T10:48:44.1660630Z remote: Counting objects:   2% (17/848)        
2021-03-13T10:48:44.1661207Z remote: Counting objects:   3% (26/848)        
2021-03-13T10:48:44.1661761Z remote: Counting objects:   4% (34/848)        
2021-03-13T10:48:44.1662328Z remote: Counting objects:   5% (43/848)        
2021-03-13T10:48:44.1663096Z remote: Counting objects:   6% (51/848)        
2021-03-13T10:48:44.1663694Z remote: Counting objects:   7% (60/848)        
2021-03-13T10:48:44.1664265Z remote: Counting objects:   8% (68/848)        
2021-03-13T10:48:44.1664834Z remote: Counting objects:   9% (77/848)        
2021-03-13T10:48:44.1665397Z remote: Counting objects:  10% (85/848)        
2021-03-13T10:48:44.1665960Z remote: Counting objects:  11% (94/848)        
2021-03-13T10:48:44.1666537Z remote: Counting objects:  12% (102/848)        
2021-03-13T10:48:44.1667092Z remote: Counting objects:  13% (111/848)        
2021-03-13T10:48:44.1667663Z remote: Counting objects:  14% (119/848)        
2021-03-13T10:48:44.1668234Z remote: Counting objects:  15% (128/848)        
2021-03-13T10:48:44.1668789Z remote: Counting objects:  16% (136/848)        
2021-03-13T10:48:44.1669360Z remote: Counting objects:  17% (145/848)        
2021-03-13T10:48:44.1669931Z remote: Counting objects:  18% (153/848)        
2021-03-13T10:48:44.1670494Z remote: Counting objects:  19% (162/848)        
2021-03-13T10:48:44.1671239Z remote: Counting objects:  20% (170/848)        
2021-03-13T10:48:44.1672132Z remote: Counting objects:  21% (179/848)        
2021-03-13T10:48:44.1672705Z remote: Counting objects:  22% (187/848)        
2021-03-13T10:48:44.1673275Z remote: Counting objects:  23% (196/848)        
2021-03-13T10:48:44.1673840Z remote: Counting objects:  24% (204/848)        
2021-03-13T10:48:44.1674408Z remote: Counting objects:  25% (212/848)        
2021-03-13T10:48:44.1674966Z remote: Counting objects:  26% (221/848)        
2021-03-13T10:48:44.1675528Z remote: Counting objects:  27% (229/848)        
2021-03-13T10:48:44.1676097Z remote: Counting objects:  28% (238/848)        
2021-03-13T10:48:44.1676651Z remote: Counting objects:  29% (246/848)        
2021-03-13T10:48:44.1677213Z remote: Counting objects:  30% (255/848)        
2021-03-13T10:48:44.1677785Z remote: Counting objects:  31% (263/848)        
2021-03-13T10:48:44.1678346Z remote: Counting objects:  32% (272/848)        
2021-03-13T10:48:44.1678913Z remote: Counting objects:  33% (280/848)        
2021-03-13T10:48:44.1679482Z remote: Counting objects:  34% (289/848)        
2021-03-13T10:48:44.1680033Z remote: Counting objects:  35% (297/848)        
2021-03-13T10:48:44.1680604Z remote: Counting objects:  36% (306/848)        
2021-03-13T10:48:44.1681347Z remote: Counting objects:  37% (314/848)        
2021-03-13T10:48:44.1681903Z remote: Counting objects:  38% (323/848)        
2021-03-13T10:48:44.1682470Z remote: Counting objects:  39% (331/848)        
2021-03-13T10:48:44.1683035Z remote: Counting objects:  40% (340/848)        
2021-03-13T10:48:44.1683603Z remote: Counting objects:  41% (348/848)        
2021-03-13T10:48:44.1684157Z remote: Counting objects:  42% (357/848)        
2021-03-13T10:48:44.1684721Z remote: Counting objects:  43% (365/848)        
2021-03-13T10:48:44.1685287Z remote: Counting objects:  44% (374/848)        
2021-03-13T10:48:44.1685852Z remote: Counting objects:  45% (382/848)        
2021-03-13T10:48:44.1686421Z remote: Counting objects:  46% (391/848)        
2021-03-13T10:48:44.1686991Z remote: Counting objects:  47% (399/848)        
2021-03-13T10:48:44.1687545Z remote: Counting objects:  48% (408/848)        
2021-03-13T10:48:44.1688111Z remote: Counting objects:  49% (416/848)        
2021-03-13T10:48:44.1688692Z remote: Counting objects:  50% (424/848)        
2021-03-13T10:48:44.1689244Z remote: Counting objects:  51% (433/848)        
2021-03-13T10:48:44.1689810Z remote: Counting objects:  52% (441/848)        
2021-03-13T10:48:44.1691048Z remote: Counting objects:  53% (450/848)        
2021-03-13T10:48:44.1691623Z remote: Counting objects:  54% (458/848)        
2021-03-13T10:48:44.1692191Z remote: Counting objects:  55% (467/848)        
2021-03-13T10:48:44.1692757Z remote: Counting objects:  56% (475/848)        
2021-03-13T10:48:44.1693309Z remote: Counting objects:  57% (484/848)        
2021-03-13T10:48:44.1694045Z remote: Counting objects:  58% (492/848)        
2021-03-13T10:48:44.1694655Z remote: Counting objects:  59% (501/848)        
2021-03-13T10:48:44.1695215Z remote: Counting objects:  60% (509/848)        
2021-03-13T10:48:44.1695784Z remote: Counting objects:  61% (518/848)        
2021-03-13T10:48:44.1696350Z remote: Counting objects:  62% (526/848)        
2021-03-13T10:48:44.1696917Z remote: Counting objects:  63% (535/848)        
2021-03-13T10:48:44.1697488Z remote: Counting objects:  64% (543/848)        
2021-03-13T10:48:44.1698059Z remote: Counting objects:  65% (552/848)        
2021-03-13T10:48:44.1698616Z remote: Counting objects:  66% (560/848)        
2021-03-13T10:48:44.1699186Z remote: Counting objects:  67% (569/848)        
2021-03-13T10:48:44.1699754Z remote: Counting objects:  68% (577/848)        
2021-03-13T10:48:44.1700326Z remote: Counting objects:  69% (586/848)        
2021-03-13T10:48:44.1700877Z remote: Counting objects:  70% (594/848)        
2021-03-13T10:48:44.1701456Z remote: Counting objects:  71% (603/848)        
2021-03-13T10:48:44.1702024Z remote: Counting objects:  72% (611/848)        
2021-03-13T10:48:44.1702575Z remote: Counting objects:  73% (620/848)        
2021-03-13T10:48:44.1703143Z remote: Counting objects:  74% (628/848)        
2021-03-13T10:48:44.1703708Z remote: Counting objects:  75% (636/848)        
2021-03-13T10:48:44.1704272Z remote: Counting objects:  76% (645/848)        
2021-03-13T10:48:44.1704835Z remote: Counting objects:  77% (653/848)        
2021-03-13T10:48:44.1705403Z remote: Counting objects:  78% (662/848)        
2021-03-13T10:48:44.1705956Z remote: Counting objects:  79% (670/848)        
2021-03-13T10:48:44.1706521Z remote: Counting objects:  80% (679/848)        
2021-03-13T10:48:44.1707093Z remote: Counting objects:  81% (687/848)        
2021-03-13T10:48:44.1707649Z remote: Counting objects:  82% (696/848)        
2021-03-13T10:48:44.1708223Z remote: Counting objects:  83% (704/848)        
2021-03-13T10:48:44.1708818Z remote: Counting objects:  84% (713/848)        
2021-03-13T10:48:44.1709390Z remote: Counting objects:  85% (721/848)        
2021-03-13T10:48:44.1709940Z remote: Counting objects:  86% (730/848)        
2021-03-13T10:48:44.1710506Z remote: Counting objects:  87% (738/848)        
2021-03-13T10:48:44.1711073Z remote: Counting objects:  88% (747/848)        
2021-03-13T10:48:44.1711899Z remote: Counting objects:  89% (755/848)        
2021-03-13T10:48:44.1712484Z remote: Counting objects:  90% (764/848)        
2021-03-13T10:48:44.1713052Z remote: Counting objects:  91% (772/848)        
2021-03-13T10:48:44.1713603Z remote: Counting objects:  92% (781/848)        
2021-03-13T10:48:44.1714167Z remote: Counting objects:  93% (789/848)        
2021-03-13T10:48:44.1714736Z remote: Counting objects:  94% (798/848)        
2021-03-13T10:48:44.1715288Z remote: Counting objects:  95% (806/848)        
2021-03-13T10:48:44.1715852Z remote: Counting objects:  96% (815/848)        
2021-03-13T10:48:44.1716417Z remote: Counting objects:  97% (823/848)        
2021-03-13T10:48:44.1716982Z remote: Counting objects:  98% (832/848)        
2021-03-13T10:48:44.1717562Z remote: Counting objects:  99% (840/848)        
2021-03-13T10:48:44.1718127Z remote: Counting objects: 100% (848/848)        
2021-03-13T10:48:44.1718704Z remote: Counting objects: 100% (848/848), done.        
2021-03-13T10:48:44.1719343Z remote: Compressing objects:   0% (1/717)        
2021-03-13T10:48:44.1720410Z remote: Compressing objects:   1% (8/717)        
2021-03-13T10:48:44.1721039Z remote: Compressing objects:   2% (15/717)        
2021-03-13T10:48:44.1721644Z remote: Compressing objects:   3% (22/717)        
2021-03-13T10:48:44.1722261Z remote: Compressing objects:   4% (29/717)        
2021-03-13T10:48:44.1722885Z remote: Compressing objects:   5% (36/717)        
2021-03-13T10:48:44.1723485Z remote: Compressing objects:   6% (44/717)        
2021-03-13T10:48:44.1724108Z remote: Compressing objects:   7% (51/717)        
2021-03-13T10:48:44.1724863Z remote: Compressing objects:   8% (58/717)        
2021-03-13T10:48:44.1725489Z remote: Compressing objects:   9% (65/717)        
2021-03-13T10:48:44.1726111Z remote: Compressing objects:  10% (72/717)        
2021-03-13T10:48:44.1726728Z remote: Compressing objects:  11% (79/717)        
2021-03-13T10:48:44.1727333Z remote: Compressing objects:  12% (87/717)        
2021-03-13T10:48:44.1727963Z remote: Compressing objects:  13% (94/717)        
2021-03-13T10:48:44.1728584Z remote: Compressing objects:  14% (101/717)        
2021-03-13T10:48:44.1729188Z remote: Compressing objects:  15% (108/717)        
2021-03-13T10:48:44.1729808Z remote: Compressing objects:  16% (115/717)        
2021-03-13T10:48:44.1730431Z remote: Compressing objects:  17% (122/717)        
2021-03-13T10:48:44.1731032Z remote: Compressing objects:  18% (130/717)        
2021-03-13T10:48:44.1731652Z remote: Compressing objects:  19% (137/717)        
2021-03-13T10:48:44.1732272Z remote: Compressing objects:  20% (144/717)        
2021-03-13T10:48:44.1732881Z remote: Compressing objects:  21% (151/717)        
2021-03-13T10:48:44.1733499Z remote: Compressing objects:  22% (158/717)        
2021-03-13T10:48:44.1734116Z remote: Compressing objects:  23% (165/717)        
2021-03-13T10:48:44.1734722Z remote: Compressing objects:  24% (173/717)        
2021-03-13T10:48:44.1735337Z remote: Compressing objects:  25% (180/717)        
2021-03-13T10:48:44.1735964Z remote: Compressing objects:  26% (187/717)        
2021-03-13T10:48:44.1736576Z remote: Compressing objects:  27% (194/717)        
2021-03-13T10:48:44.1737179Z remote: Compressing objects:  28% (201/717)        
2021-03-13T10:48:44.1737801Z remote: Compressing objects:  29% (208/717)        
2021-03-13T10:48:44.1738414Z remote: Compressing objects:  30% (216/717)        
2021-03-13T10:48:44.1739022Z remote: Compressing objects:  31% (223/717)        
2021-03-13T10:48:44.1739729Z remote: Compressing objects:  32% (230/717)        
2021-03-13T10:48:44.1740347Z remote: Compressing objects:  33% (237/717)        
2021-03-13T10:48:44.1740955Z remote: Compressing objects:  34% (244/717)        
2021-03-13T10:48:44.1741575Z remote: Compressing objects:  35% (251/717)        
2021-03-13T10:48:44.1742366Z remote: Compressing objects:  36% (259/717)        
2021-03-13T10:48:44.1742967Z remote: Compressing objects:  37% (266/717)        
2021-03-13T10:48:44.1743706Z remote: Compressing objects:  38% (273/717)        
2021-03-13T10:48:44.1744328Z remote: Compressing objects:  39% (280/717)        
2021-03-13T10:48:44.1744928Z remote: Compressing objects:  40% (287/717)        
2021-03-13T10:48:44.1745542Z remote: Compressing objects:  41% (294/717)        
2021-03-13T10:48:44.1746158Z remote: Compressing objects:  42% (302/717)        
2021-03-13T10:48:44.1746762Z remote: Compressing objects:  43% (309/717)        
2021-03-13T10:48:44.1747375Z remote: Compressing objects:  44% (316/717)        
2021-03-13T10:48:44.1747992Z remote: Compressing objects:  45% (323/717)        
2021-03-13T10:48:44.1748599Z remote: Compressing objects:  46% (330/717)        
2021-03-13T10:48:44.1749221Z remote: Compressing objects:  47% (337/717)        
2021-03-13T10:48:44.1749843Z remote: Compressing objects:  48% (345/717)        
2021-03-13T10:48:44.1750460Z remote: Compressing objects:  49% (352/717)        
2021-03-13T10:48:44.1751062Z remote: Compressing objects:  50% (359/717)        
2021-03-13T10:48:44.1751969Z remote: Compressing objects:  51% (366/717)        
2021-03-13T10:48:44.1752617Z remote: Compressing objects:  52% (373/717)        
2021-03-13T10:48:44.1753217Z remote: Compressing objects:  53% (381/717)        
2021-03-13T10:48:44.1753832Z remote: Compressing objects:  54% (388/717)        
2021-03-13T10:48:44.1754452Z remote: Compressing objects:  55% (395/717)        
2021-03-13T10:48:44.1755053Z remote: Compressing objects:  56% (402/717)        
2021-03-13T10:48:44.1755672Z remote: Compressing objects:  57% (409/717)        
2021-03-13T10:48:44.1756288Z remote: Compressing objects:  58% (416/717)        
2021-03-13T10:48:44.1756999Z remote: Compressing objects:  59% (424/717)        
2021-03-13T10:48:44.1757641Z remote: Compressing objects:  60% (431/717)        
2021-03-13T10:48:44.1758259Z remote: Compressing objects:  61% (438/717)        
2021-03-13T10:48:44.1758864Z remote: Compressing objects:  62% (445/717)        
2021-03-13T10:48:44.1759478Z remote: Compressing objects:  63% (452/717)        
2021-03-13T10:48:44.1760114Z remote: Compressing objects:  64% (459/717)        
2021-03-13T10:48:44.1760711Z remote: Compressing objects:  65% (467/717)        
2021-03-13T10:48:44.1761323Z remote: Compressing objects:  66% (474/717)        
2021-03-13T10:48:44.1761942Z remote: Compressing objects:  67% (481/717)        
2021-03-13T10:48:44.1762541Z remote: Compressing objects:  68% (488/717)        
2021-03-13T10:48:44.1763158Z remote: Compressing objects:  69% (495/717)        
2021-03-13T10:48:44.1763772Z remote: Compressing objects:  70% (502/717)        
2021-03-13T10:48:44.1764370Z remote: Compressing objects:  71% (510/717)        
2021-03-13T10:48:44.1764993Z remote: Compressing objects:  72% (517/717)        
2021-03-13T10:48:44.1765611Z remote: Compressing objects:  73% (524/717)        
2021-03-13T10:48:44.1766230Z remote: Compressing objects:  74% (531/717)        
2021-03-13T10:48:44.1766829Z remote: Compressing objects:  75% (538/717)        
2021-03-13T10:48:44.1767453Z remote: Compressing objects:  76% (545/717)        
2021-03-13T10:48:44.1768068Z remote: Compressing objects:  77% (553/717)        
2021-03-13T10:48:44.1768665Z remote: Compressing objects:  78% (560/717)        
2021-03-13T10:48:44.1769277Z remote: Compressing objects:  79% (567/717)        
2021-03-13T10:48:44.1769896Z remote: Compressing objects:  80% (574/717)        
2021-03-13T10:48:44.1770501Z remote: Compressing objects:  81% (581/717)        
2021-03-13T10:48:44.1771115Z remote: Compressing objects:  82% (588/717)        
2021-03-13T10:48:44.1771733Z remote: Compressing objects:  83% (596/717)        
2021-03-13T10:48:44.1772336Z remote: Compressing objects:  84% (603/717)        
2021-03-13T10:48:44.1772955Z remote: Compressing objects:  85% (610/717)        
2021-03-13T10:48:44.1773578Z remote: Compressing objects:  86% (617/717)        
2021-03-13T10:48:44.1774179Z remote: Compressing objects:  87% (624/717)        
2021-03-13T10:48:44.1774795Z remote: Compressing objects:  88% (631/717)        
2021-03-13T10:48:44.1775532Z remote: Compressing objects:  89% (639/717)        
2021-03-13T10:48:44.1776132Z remote: Compressing objects:  90% (646/717)        
2021-03-13T10:48:44.1776749Z remote: Compressing objects:  91% (653/717)        
2021-03-13T10:48:44.1777364Z remote: Compressing objects:  92% (660/717)        
2021-03-13T10:48:44.1777970Z remote: Compressing objects:  93% (667/717)        
2021-03-13T10:48:44.1778583Z remote: Compressing objects:  94% (674/717)        
2021-03-13T10:48:44.1779196Z remote: Compressing objects:  95% (682/717)        
2021-03-13T10:48:44.1779811Z remote: Compressing objects:  96% (689/717)        
2021-03-13T10:48:44.1780423Z remote: Compressing objects:  97% (696/717)        
2021-03-13T10:48:44.1781044Z remote: Compressing objects:  98% (703/717)        
2021-03-13T10:48:44.1781657Z remote: Compressing objects:  99% (710/717)        
2021-03-13T10:48:44.1782261Z remote: Compressing objects: 100% (717/717)        
2021-03-13T10:48:44.1782908Z remote: Compressing objects: 100% (717/717), done.        
2021-03-13T10:48:44.1783501Z Receiving objects:   0% (1/848)
2021-03-13T10:48:44.1784004Z Receiving objects:   1% (9/848)
2021-03-13T10:48:44.1784520Z Receiving objects:   2% (17/848)
2021-03-13T10:48:44.1785044Z Receiving objects:   3% (26/848)
2021-03-13T10:48:44.1785542Z Receiving objects:   4% (34/848)
2021-03-13T10:48:44.1786057Z Receiving objects:   5% (43/848)
2021-03-13T10:48:44.1786576Z Receiving objects:   6% (51/848)
2021-03-13T10:48:44.1787073Z Receiving objects:   7% (60/848)
2021-03-13T10:48:44.1787606Z Receiving objects:   8% (68/848)
2021-03-13T10:48:44.1788120Z Receiving objects:   9% (77/848)
2021-03-13T10:48:44.1788713Z Receiving objects:  10% (85/848)
2021-03-13T10:48:44.1789235Z Receiving objects:  11% (94/848)
2021-03-13T10:48:44.1789967Z Receiving objects:  12% (102/848)
2021-03-13T10:48:44.1790557Z Receiving objects:  13% (111/848)
2021-03-13T10:48:44.1791062Z Receiving objects:  14% (119/848)
2021-03-13T10:48:44.1791713Z Receiving objects:  15% (128/848)
2021-03-13T10:48:44.1792356Z Receiving objects:  16% (136/848)
2021-03-13T10:48:44.1792865Z Receiving objects:  17% (145/848)
2021-03-13T10:48:44.1793383Z Receiving objects:  18% (153/848)
2021-03-13T10:48:44.1793899Z Receiving objects:  19% (162/848)
2021-03-13T10:48:44.1794396Z Receiving objects:  20% (170/848)
2021-03-13T10:48:44.1794910Z Receiving objects:  21% (179/848)
2021-03-13T10:48:44.1795428Z Receiving objects:  22% (187/848)
2021-03-13T10:48:44.1795930Z Receiving objects:  23% (196/848)
2021-03-13T10:48:44.1796450Z Receiving objects:  24% (204/848)
2021-03-13T10:48:44.1796965Z Receiving objects:  25% (212/848)
2021-03-13T10:48:44.1797472Z Receiving objects:  26% (221/848)
2021-03-13T10:48:44.1797992Z Receiving objects:  27% (229/848)
2021-03-13T10:48:44.1798507Z Receiving objects:  28% (238/848)
2021-03-13T10:48:44.1799015Z Receiving objects:  29% (246/848)
2021-03-13T10:48:44.1799534Z Receiving objects:  30% (255/848)
2021-03-13T10:48:44.1800136Z Receiving objects:  31% (263/848)
2021-03-13T10:48:44.1800691Z Receiving objects:  32% (272/848)
2021-03-13T10:48:44.1801394Z Receiving objects:  33% (280/848)
2021-03-13T10:48:44.1802010Z Receiving objects:  34% (289/848)
2021-03-13T10:48:44.1802554Z Receiving objects:  35% (297/848)
2021-03-13T10:48:44.1803146Z Receiving objects:  36% (306/848)
2021-03-13T10:48:44.1803766Z Receiving objects:  37% (314/848)
2021-03-13T10:48:44.1804313Z Receiving objects:  38% (323/848)
2021-03-13T10:48:44.1804926Z Receiving objects:  39% (331/848)
2021-03-13T10:48:44.1805516Z Receiving objects:  40% (340/848)
2021-03-13T10:48:44.1806064Z Receiving objects:  41% (348/848)
2021-03-13T10:48:44.1806683Z Receiving objects:  42% (357/848)
2021-03-13T10:48:44.1807309Z Receiving objects:  43% (365/848)
2021-03-13T10:48:44.1807854Z Receiving objects:  44% (374/848)
2021-03-13T10:48:44.1808446Z Receiving objects:  45% (382/848)
2021-03-13T10:48:44.1809040Z Receiving objects:  46% (391/848)
2021-03-13T10:48:44.1809612Z Receiving objects:  47% (399/848)
2021-03-13T10:48:44.1810381Z Receiving objects:  48% (408/848)
2021-03-13T10:48:44.1810977Z Receiving objects:  49% (416/848)
2021-03-13T10:48:44.1811521Z Receiving objects:  50% (424/848)
2021-03-13T10:48:44.1812119Z Receiving objects:  51% (433/848)
2021-03-13T10:48:44.1812769Z Receiving objects:  52% (441/848)
2021-03-13T10:48:44.1813316Z Receiving objects:  53% (450/848)
2021-03-13T10:48:44.1813907Z Receiving objects:  54% (458/848)
2021-03-13T10:48:44.1814495Z Receiving objects:  55% (467/848)
2021-03-13T10:48:44.1815088Z Receiving objects:  56% (475/848)
2021-03-13T10:48:44.1815729Z Receiving objects:  57% (484/848)
2021-03-13T10:48:44.1816324Z Receiving objects:  58% (492/848)
2021-03-13T10:48:44.1816874Z Receiving objects:  59% (501/848)
2021-03-13T10:48:44.1817472Z Receiving objects:  60% (509/848)
2021-03-13T10:48:44.1818100Z Receiving objects:  61% (518/848)
2021-03-13T10:48:44.1818647Z Receiving objects:  62% (526/848)
2021-03-13T10:48:44.1819242Z Receiving objects:  63% (535/848)
2021-03-13T10:48:44.1819844Z Receiving objects:  64% (543/848)
2021-03-13T10:48:44.1820385Z Receiving objects:  65% (552/848)
2021-03-13T10:48:44.1821013Z Receiving objects:  66% (560/848)
2021-03-13T10:48:44.1821613Z Receiving objects:  67% (569/848)
2021-03-13T10:48:44.1822150Z Receiving objects:  68% (577/848)
2021-03-13T10:48:44.1822739Z Receiving objects:  69% (586/848)
2021-03-13T10:48:44.1823353Z Receiving objects:  70% (594/848)
2021-03-13T10:48:44.1823917Z Receiving objects:  71% (603/848)
2021-03-13T10:48:44.1824515Z Receiving objects:  72% (611/848)
2021-03-13T10:48:44.1825105Z Receiving objects:  73% (620/848)
2021-03-13T10:48:44.1825643Z Receiving objects:  74% (628/848)
2021-03-13T10:48:44.1826350Z Receiving objects:  75% (636/848)
2021-03-13T10:48:44.1827004Z Receiving objects:  76% (645/848)
2021-03-13T10:48:44.1827546Z Receiving objects:  77% (653/848)
2021-03-13T10:48:44.1828142Z Receiving objects:  78% (662/848)
2021-03-13T10:48:44.1828755Z Receiving objects:  79% (670/848)
2021-03-13T10:48:44.1829296Z Receiving objects:  80% (679/848)
2021-03-13T10:48:44.1829939Z Receiving objects:  81% (687/848)
2021-03-13T10:48:44.1830532Z Receiving objects:  82% (696/848)
2021-03-13T10:48:44.1831088Z Receiving objects:  83% (704/848)
2021-03-13T10:48:44.1831823Z Receiving objects:  84% (713/848)
2021-03-13T10:48:44.1832553Z Receiving objects:  85% (721/848)
2021-03-13T10:48:44.1833105Z Receiving objects:  86% (730/848)
2021-03-13T10:48:44.1833696Z Receiving objects:  87% (738/848)
2021-03-13T10:48:44.1834301Z Receiving objects:  88% (747/848)
2021-03-13T10:48:44.1834840Z Receiving objects:  89% (755/848)
2021-03-13T10:48:44.1835454Z Receiving objects:  90% (764/848)
2021-03-13T10:48:44.1836064Z Receiving objects:  91% (772/848)
2021-03-13T10:48:44.1836623Z Receiving objects:  92% (781/848)
2021-03-13T10:48:44.1837218Z Receiving objects:  93% (789/848)
2021-03-13T10:48:44.1837817Z Receiving objects:  94% (798/848)
2021-03-13T10:48:44.1838549Z Receiving objects:  95% (806/848)
2021-03-13T10:48:44.1839171Z Receiving objects:  96% (815/848)
2021-03-13T10:48:44.1840306Z remote: Total 848 (delta 86), reused 600 (delta 76), pack-reused 0        
2021-03-13T10:48:44.1841039Z Receiving objects:  97% (823/848)
2021-03-13T10:48:44.1841671Z Receiving objects:  98% (832/848)
2021-03-13T10:48:44.1842342Z Receiving objects:  99% (840/848)
2021-03-13T10:48:44.1842940Z Receiving objects: 100% (848/848)
2021-03-13T10:48:44.1843551Z Receiving objects: 100% (848/848), 2.53 MiB | 11.98 MiB/s, done.
2021-03-13T10:48:44.1844204Z Resolving deltas:   0% (0/86)
2021-03-13T10:48:44.1844805Z Resolving deltas:   1% (1/86)
2021-03-13T10:48:44.1845346Z Resolving deltas:   2% (2/86)
2021-03-13T10:48:44.1845915Z Resolving deltas:   3% (3/86)
2021-03-13T10:48:44.1847505Z Resolving deltas:   4% (4/86)
2021-03-13T10:48:44.1848094Z Resolving deltas:   5% (5/86)
2021-03-13T10:48:44.1848771Z Resolving deltas:   6% (6/86)
2021-03-13T10:48:44.1849821Z Resolving deltas:   8% (7/86)
2021-03-13T10:48:44.1850363Z Resolving deltas:   9% (8/86)
2021-03-13T10:48:44.1851134Z Resolving deltas:  10% (9/86)
2021-03-13T10:48:44.1851756Z Resolving deltas:  11% (10/86)
2021-03-13T10:48:44.1852334Z Resolving deltas:  12% (11/86)
2021-03-13T10:48:44.1852916Z Resolving deltas:  13% (12/86)
2021-03-13T10:48:44.1853494Z Resolving deltas:  15% (13/86)
2021-03-13T10:48:44.1854014Z Resolving deltas:  16% (14/86)
2021-03-13T10:48:44.1854603Z Resolving deltas:  17% (15/86)
2021-03-13T10:48:44.1855201Z Resolving deltas:  18% (16/86)
2021-03-13T10:48:44.1855725Z Resolving deltas:  19% (17/86)
2021-03-13T10:48:44.1856293Z Resolving deltas:  20% (18/86)
2021-03-13T10:48:44.1856878Z Resolving deltas:  22% (19/86)
2021-03-13T10:48:44.1857403Z Resolving deltas:  23% (20/86)
2021-03-13T10:48:44.1858015Z Resolving deltas:  24% (21/86)
2021-03-13T10:48:44.1858597Z Resolving deltas:  25% (22/86)
2021-03-13T10:48:44.1859119Z Resolving deltas:  26% (23/86)
2021-03-13T10:48:44.1859706Z Resolving deltas:  27% (24/86)
2021-03-13T10:48:44.1860299Z Resolving deltas:  29% (25/86)
2021-03-13T10:48:44.1860825Z Resolving deltas:  30% (26/86)
2021-03-13T10:48:44.1861406Z Resolving deltas:  31% (27/86)
2021-03-13T10:48:44.1861995Z Resolving deltas:  32% (28/86)
2021-03-13T10:48:44.1862519Z Resolving deltas:  33% (29/86)
2021-03-13T10:48:44.1863131Z Resolving deltas:  34% (30/86)
2021-03-13T10:48:44.1863710Z Resolving deltas:  36% (31/86)
2021-03-13T10:48:44.1864230Z Resolving deltas:  37% (32/86)
2021-03-13T10:48:44.1864813Z Resolving deltas:  38% (33/86)
2021-03-13T10:48:44.1865383Z Resolving deltas:  39% (34/86)
2021-03-13T10:48:44.1865924Z Resolving deltas:  40% (35/86)
2021-03-13T10:48:44.1866494Z Resolving deltas:  41% (36/86)
2021-03-13T10:48:44.1867085Z Resolving deltas:  43% (37/86)
2021-03-13T10:48:44.1867699Z Resolving deltas:  44% (38/86)
2021-03-13T10:48:44.1868300Z Resolving deltas:  45% (39/86)
2021-03-13T10:48:44.1868903Z Resolving deltas:  46% (40/86)
2021-03-13T10:48:44.1869426Z Resolving deltas:  47% (41/86)
2021-03-13T10:48:44.1870012Z Resolving deltas:  48% (42/86)
2021-03-13T10:48:44.1870585Z Resolving deltas:  50% (43/86)
2021-03-13T10:48:44.1871118Z Resolving deltas:  51% (44/86)
2021-03-13T10:48:44.1871966Z Resolving deltas:  52% (45/86)
2021-03-13T10:48:44.1872590Z Resolving deltas:  53% (46/86)
2021-03-13T10:48:44.1873110Z Resolving deltas:  54% (47/86)
2021-03-13T10:48:44.1873704Z Resolving deltas:  55% (48/86)
2021-03-13T10:48:44.1874312Z Resolving deltas:  56% (49/86)
2021-03-13T10:48:44.1874839Z Resolving deltas:  58% (50/86)
2021-03-13T10:48:44.1875428Z Resolving deltas:  59% (51/86)
2021-03-13T10:48:44.1875999Z Resolving deltas:  60% (52/86)
2021-03-13T10:48:44.1876520Z Resolving deltas:  61% (53/86)
2021-03-13T10:48:44.1877108Z Resolving deltas:  62% (54/86)
2021-03-13T10:48:44.1877714Z Resolving deltas:  63% (55/86)
2021-03-13T10:48:44.1878239Z Resolving deltas:  65% (56/86)
2021-03-13T10:48:44.1878806Z Resolving deltas:  66% (57/86)
2021-03-13T10:48:44.1879378Z Resolving deltas:  67% (58/86)
2021-03-13T10:48:44.1879915Z Resolving deltas:  68% (59/86)
2021-03-13T10:48:44.1880503Z Resolving deltas:  69% (60/86)
2021-03-13T10:48:44.1881088Z Resolving deltas:  70% (61/86)
2021-03-13T10:48:44.1881603Z Resolving deltas:  72% (62/86)
2021-03-13T10:48:44.1882171Z Resolving deltas:  73% (63/86)
2021-03-13T10:48:44.1882779Z Resolving deltas:  74% (64/86)
2021-03-13T10:48:44.1883300Z Resolving deltas:  75% (65/86)
2021-03-13T10:48:44.1883872Z Resolving deltas:  76% (66/86)
2021-03-13T10:48:44.1884461Z Resolving deltas:  77% (67/86)
2021-03-13T10:48:44.1884983Z Resolving deltas:  79% (68/86)
2021-03-13T10:48:44.1885592Z Resolving deltas:  80% (69/86)
2021-03-13T10:48:44.1886168Z Resolving deltas:  81% (70/86)
2021-03-13T10:48:44.1886694Z Resolving deltas:  82% (71/86)
2021-03-13T10:48:44.1887269Z Resolving deltas:  83% (72/86)
2021-03-13T10:48:44.1887885Z Resolving deltas:  84% (73/86)
2021-03-13T10:48:44.1888411Z Resolving deltas:  86% (74/86)
2021-03-13T10:48:44.1888982Z Resolving deltas:  87% (75/86)
2021-03-13T10:48:44.1889552Z Resolving deltas:  88% (76/86)
2021-03-13T10:48:44.1890073Z Resolving deltas:  89% (77/86)
2021-03-13T10:48:44.1890832Z Resolving deltas:  90% (78/86)
2021-03-13T10:48:44.1891360Z Resolving deltas:  91% (79/86)
2021-03-13T10:48:44.1891928Z Resolving deltas:  93% (80/86)
2021-03-13T10:48:44.1892499Z Resolving deltas:  94% (81/86)
2021-03-13T10:48:44.1893037Z Resolving deltas:  95% (82/86)
2021-03-13T10:48:44.1893633Z Resolving deltas:  96% (83/86)
2021-03-13T10:48:44.1894208Z Resolving deltas:  97% (84/86)
2021-03-13T10:48:44.1894729Z Resolving deltas:  98% (85/86)
2021-03-13T10:48:44.1895327Z Resolving deltas: 100% (86/86)
2021-03-13T10:48:44.1895942Z Resolving deltas: 100% (86/86), done.
2021-03-13T10:48:44.1897046Z From https://github.com/xannasavin/YOURLS
2021-03-13T10:48:44.1898506Z  * [new ref]         9812e6f0be9755bf9e3d9e28778cdf4a7e63c591 -> origin/master
2021-03-13T10:48:44.1899387Z ##[endgroup]
2021-03-13T10:48:44.1900040Z ##[group]Determining the checkout info
2021-03-13T10:48:44.1900607Z ##[endgroup]
2021-03-13T10:48:44.1901229Z ##[group]Checking out the ref
2021-03-13T10:48:44.1902371Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
2021-03-13T10:48:44.2012926Z Reset branch 'master'
2021-03-13T10:48:44.2029480Z Branch 'master' set up to track remote branch 'master' from 'origin'.
2021-03-13T10:48:44.2030903Z ##[endgroup]
2021-03-13T10:48:44.2032111Z [command]/usr/bin/git log -1
2021-03-13T10:48:44.2154648Z commit 9812e6f0be9755bf9e3d9e28778cdf4a7e63c591
2021-03-13T10:48:44.2155718Z Author: xannasavin <48352696+xannasavin@users.noreply.github.com>
2021-03-13T10:48:44.2156564Z Date:   Sat Mar 13 11:48:28 2021 +0100
2021-03-13T10:48:44.2156916Z 
2021-03-13T10:48:44.2157732Z     Merge pull request #5 from YOURLS/master
2021-03-13T10:48:44.2158418Z     
2021-03-13T10:48:44.2159364Z     Fix SVG for IE 11 (#2864)
2021-03-13T10:48:44.2432278Z ##[group]Run SamKirkland/FTP-Deploy-Action@4.0.0
2021-03-13T10:48:44.2432919Z with:
2021-03-13T10:48:44.2433735Z   server: ***
2021-03-13T10:48:44.2434316Z   username: ***
2021-03-13T10:48:44.2434968Z   password: ***
2021-03-13T10:48:44.2438805Z   exclude: .git* - .git*/** -  **/.git*/** - .github/* - .gitignore - */.gitignore - */.gitkeep - .gitlab-ci.yml - readme.md - *.md - .htaccess - *.config - *.conf - [Rr]obots.txt - .editorconfig - .gitattributes - user/* - user/languages/ - user/pages/ - user/plugins/ - !user/plugins/hyphens-in-urls/ - !user/plugins/random-bg/ - !user/plugins/random-shorturls/ - !user/index.html - !user/**/index.html - tests/ - tests/yourls-tests-config.php - tests/vendor/ - tests/data/auth/config-test-auth-hashed.php - tests/data/htaccess/test* - LICENSE - composer.json - composer.lock - phpunit.xml.dist - readme.html - sample-public-api.txt - sample-public-front-page.txt - sample-remote-api-call.txt - sample-robots.txt - includes/**/tests/ - build/ - coverage/ - phpunit.xml - Thumbs.db - Desktop.ini - .DS_Store - /nbproject/ - .idea
2021-03-13T10:48:44.2442626Z ##[endgroup]
2021-03-13T10:48:44.3014255Z ----------------------------------------------------------------
2021-03-13T10:48:44.3021697Z πŸš€ Thanks for using ftp-deploy. Let's deploy some stuff!   
2021-03-13T10:48:44.3024550Z ----------------------------------------------------------------
2021-03-13T10:48:44.3027045Z If you found this project helpful, please support it
2021-03-13T10:48:44.3029950Z by giving it a ⭐ on Github --> https://github.com/SamKirkland/FTP-Deploy-Action
2021-03-13T10:48:44.3033429Z or add a badge 🏷️ to your projects readme --> https://github.com/SamKirkland/FTP-Deploy-Action#badge
2021-03-13T10:48:46.5207670Z ----------------------------------------------------------------
2021-03-13T10:48:46.5317476Z Last published on πŸ“… Friday, March 5, 2021, 9:09 AM
2021-03-13T10:48:46.5361979Z ----------------------------------------------------------------
2021-03-13T10:48:46.5390451Z Local Files:   799
2021-03-13T10:48:46.5393046Z Server Files:  799
2021-03-13T10:48:46.5394905Z ----------------------------------------------------------------
2021-03-13T10:48:46.5396507Z Calculating differences between client & server
2021-03-13T10:48:46.5398856Z ----------------------------------------------------------------
2021-03-13T10:48:46.5400636Z πŸ—‘οΈ  Delete: .editorconfig    
2021-03-13T10:48:46.5402502Z βš–οΈ  File content is the same, doing nothing: admin/admin-ajax.php
2021-03-13T10:48:46.5404709Z βš–οΈ  File content is the same, doing nothing: admin/index.php
2021-03-13T10:48:46.5406647Z βš–οΈ  File content is the same, doing nothing: admin/install.php
2021-03-13T10:48:46.5473327Z βš–οΈ  File content is the same, doing nothing: admin/plugins.php
2021-03-13T10:48:46.5475463Z βš–οΈ  File content is the same, doing nothing: admin/tools.php
2021-03-13T10:48:46.5477294Z βš–οΈ  File content is the same, doing nothing: admin/upgrade.php
2021-03-13T10:48:46.5478882Z πŸ—‘οΈ  Delete: CHANGELOG.md    
2021-03-13T10:48:46.5480507Z βš–οΈ  File content is the same, doing nothing: css/cal.css
2021-03-13T10:48:46.5482151Z βš–οΈ  File content is the same, doing nothing: css/infos.css
2021-03-13T10:48:46.5483793Z βš–οΈ  File content is the same, doing nothing: css/palette.png
2021-03-13T10:48:46.5485595Z βš–οΈ  File content is the same, doing nothing: css/share.css
2021-03-13T10:48:46.5487301Z βš–οΈ  File content is the same, doing nothing: css/style.css
2021-03-13T10:48:46.5489017Z βš–οΈ  File content is the same, doing nothing: css/tablesorter.css
2021-03-13T10:48:46.5491054Z βš–οΈ  File content is the same, doing nothing: images/accept.png
2021-03-13T10:48:46.5509132Z βš–οΈ  File content is the same, doing nothing: images/accept.svg
2021-03-13T10:48:46.5510340Z βš–οΈ  File content is the same, doing nothing: images/admin-dashboard.gif
2021-03-13T10:48:46.5511374Z βš–οΈ  File content is the same, doing nothing: images/asc.gif
2021-03-13T10:48:46.5513838Z βš–οΈ  File content is the same, doing nothing: images/asc.svg
2021-03-13T10:48:46.5515104Z βš–οΈ  File content is the same, doing nothing: images/bg.gif
2021-03-13T10:48:46.5516169Z βš–οΈ  File content is the same, doing nothing: images/bg.svg
2021-03-13T10:48:46.5517080Z βš–οΈ  File content is the same, doing nothing: images/blank.gif
2021-03-13T10:48:46.5518069Z βš–οΈ  File content is the same, doing nothing: images/cancel.png
2021-03-13T10:48:46.5519030Z βš–οΈ  File content is the same, doing nothing: images/cancel.svg
2021-03-13T10:48:46.5519989Z βš–οΈ  File content is the same, doing nothing: images/chart_bar_add.png
2021-03-13T10:48:46.5520971Z βš–οΈ  File content is the same, doing nothing: images/chart_bar_add.svg
2021-03-13T10:48:46.5521945Z βš–οΈ  File content is the same, doing nothing: images/chart_bar.png
2021-03-13T10:48:46.5522886Z βš–οΈ  File content is the same, doing nothing: images/chart_bar.svg
2021-03-13T10:48:46.5523889Z βš–οΈ  File content is the same, doing nothing: images/copy-large.png
2021-03-13T10:48:46.5524873Z βš–οΈ  File content is the same, doing nothing: images/copy.png
2021-03-13T10:48:46.5525825Z βš–οΈ  File content is the same, doing nothing: images/copy.svg
2021-03-13T10:48:46.5526761Z βš–οΈ  File content is the same, doing nothing: images/delete.png
2021-03-13T10:48:46.5527733Z βš–οΈ  File content is the same, doing nothing: images/delete.svg
2021-03-13T10:48:46.5529667Z βš–οΈ  File content is the same, doing nothing: images/desc.gif
2021-03-13T10:48:46.5530908Z βš–οΈ  File content is the same, doing nothing: images/desc.svg
2021-03-13T10:48:46.5531870Z βš–οΈ  File content is the same, doing nothing: images/error.png
2021-03-13T10:48:46.5532821Z βš–οΈ  File content is the same, doing nothing: images/error.svg
2021-03-13T10:48:46.5533780Z βš–οΈ  File content is the same, doing nothing: images/facebook.png
2021-03-13T10:48:46.5539350Z βš–οΈ  File content is the same, doing nothing: images/facebook.svg
2021-03-13T10:48:46.5540429Z βš–οΈ  File content is the same, doing nothing: images/favicon.gif
2021-03-13T10:48:46.5541287Z πŸ” File replace: images/favicon.svg
2021-03-13T10:48:46.5542180Z βš–οΈ  File content is the same, doing nothing: images/filter.gif
2021-03-13T10:48:46.5543164Z βš–οΈ  File content is the same, doing nothing: images/filter.svg
2021-03-13T10:48:46.5544131Z βš–οΈ  File content is the same, doing nothing: images/loading.gif
2021-03-13T10:48:46.5545103Z βš–οΈ  File content is the same, doing nothing: images/pencil.png
2021-03-13T10:48:46.5546402Z βš–οΈ  File content is the same, doing nothing: images/pencil.svg
2021-03-13T10:48:46.5547343Z βš–οΈ  File content is the same, doing nothing: images/share.png
2021-03-13T10:48:46.5548294Z βš–οΈ  File content is the same, doing nothing: images/share.svg
2021-03-13T10:48:46.5549279Z βš–οΈ  File content is the same, doing nothing: images/stats-anim.gif
2021-03-13T10:48:46.5550278Z βš–οΈ  File content is the same, doing nothing: images/twitter.png
2021-03-13T10:48:46.5551228Z βš–οΈ  File content is the same, doing nothing: images/twitter.svg
2021-03-13T10:48:46.5552662Z βš–οΈ  File content is the same, doing nothing: images/yourls-logo.png
2021-03-13T10:48:46.5553618Z πŸ” File replace: images/yourls-logo.svg
2021-03-13T10:48:46.5554537Z βš–οΈ  File content is the same, doing nothing: includes/auth.php
2021-03-13T10:48:46.5555564Z βš–οΈ  File content is the same, doing nothing: includes/class-mysql.php
2021-03-13T10:48:46.5556633Z βš–οΈ  File content is the same, doing nothing: includes/Config/Config.php
2021-03-13T10:48:46.5557667Z βš–οΈ  File content is the same, doing nothing: includes/Config/Init.php
2021-03-13T10:48:46.5558759Z βš–οΈ  File content is the same, doing nothing: includes/Config/InitDefaults.php
2021-03-13T10:48:46.5559881Z βš–οΈ  File content is the same, doing nothing: includes/Database/Logger.php
2021-03-13T10:48:46.5560946Z βš–οΈ  File content is the same, doing nothing: includes/Database/Options.php
2021-03-13T10:48:46.5562063Z βš–οΈ  File content is the same, doing nothing: includes/Database/Profiler.php
2021-03-13T10:48:46.5563143Z βš–οΈ  File content is the same, doing nothing: includes/Database/YDB.php
2021-03-13T10:48:46.5564300Z βš–οΈ  File content is the same, doing nothing: includes/Exceptions/ConfigException.php
2021-03-13T10:48:46.5565690Z βš–οΈ  File content is the same, doing nothing: includes/functions-api.php
2021-03-13T10:48:46.5566919Z βš–οΈ  File content is the same, doing nothing: includes/functions-auth.php
2021-03-13T10:48:46.5568267Z βš–οΈ  File content is the same, doing nothing: includes/functions-compat.php
2021-03-13T10:48:46.5569428Z βš–οΈ  File content is the same, doing nothing: includes/functions-debug.php
2021-03-13T10:48:46.5570645Z βš–οΈ  File content is the same, doing nothing: includes/functions-deprecated.php
2021-03-13T10:48:46.5571917Z βš–οΈ  File content is the same, doing nothing: includes/functions-formatting.php
2021-03-13T10:48:46.5573195Z βš–οΈ  File content is the same, doing nothing: includes/functions-geo.php
2021-03-13T10:48:46.5574389Z βš–οΈ  File content is the same, doing nothing: includes/functions-html.php
2021-03-13T10:48:46.5575525Z βš–οΈ  File content is the same, doing nothing: includes/functions-http.php
2021-03-13T10:48:46.5576643Z βš–οΈ  File content is the same, doing nothing: includes/functions-infos.php
2021-03-13T10:48:46.5577828Z βš–οΈ  File content is the same, doing nothing: includes/functions-install.php
2021-03-13T10:48:46.5579002Z βš–οΈ  File content is the same, doing nothing: includes/functions-kses.php
2021-03-13T10:48:46.5580112Z βš–οΈ  File content is the same, doing nothing: includes/functions-l10n.php
2021-03-13T10:48:46.5581283Z βš–οΈ  File content is the same, doing nothing: includes/functions-links.php
2021-03-13T10:48:46.5582465Z βš–οΈ  File content is the same, doing nothing: includes/functions-options.php
2021-03-13T10:48:46.5583564Z πŸ” File replace: includes/functions-plugins.php
2021-03-13T10:48:46.5584698Z βš–οΈ  File content is the same, doing nothing: includes/functions-shorturls.php
2021-03-13T10:48:46.5585916Z βš–οΈ  File content is the same, doing nothing: includes/functions-upgrade.php
2021-03-13T10:48:46.5586915Z πŸ” File replace: includes/functions.php
2021-03-13T10:48:46.5587839Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_.gif
2021-03-13T10:48:46.5588881Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_a1.gif
2021-03-13T10:48:46.5589924Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_a2.gif
2021-03-13T10:48:46.5590929Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ac.gif
2021-03-13T10:48:46.5592431Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ad.gif
2021-03-13T10:48:46.5593470Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ae.gif
2021-03-13T10:48:46.5594485Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_af.gif
2021-03-13T10:48:46.5595525Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ag.gif
2021-03-13T10:48:46.5612675Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ai.gif
2021-03-13T10:48:46.5613986Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_al.gif
2021-03-13T10:48:46.5615022Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_am.gif
2021-03-13T10:48:46.5616091Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_an.gif
2021-03-13T10:48:46.5617141Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ao.gif
2021-03-13T10:48:46.5618153Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ap.gif
2021-03-13T10:48:46.5619217Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_aq.gif
2021-03-13T10:48:46.5620247Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ar.gif
2021-03-13T10:48:46.5621262Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_as.gif
2021-03-13T10:48:46.5622298Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_at.gif
2021-03-13T10:48:46.5623327Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_au.gif
2021-03-13T10:48:46.5624353Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_aw.gif
2021-03-13T10:48:46.5625367Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ax.gif
2021-03-13T10:48:46.5626613Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_az.gif
2021-03-13T10:48:46.5627745Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ba.gif
2021-03-13T10:48:46.5628768Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bb.gif
2021-03-13T10:48:46.5629826Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bd.gif
2021-03-13T10:48:46.5630862Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_be.gif
2021-03-13T10:48:46.5638858Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bf.gif
2021-03-13T10:48:46.5640505Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bg.gif
2021-03-13T10:48:46.5642938Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bh.gif
2021-03-13T10:48:46.5643990Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bi.gif
2021-03-13T10:48:46.5645054Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bj.gif
2021-03-13T10:48:46.5646102Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bl.gif
2021-03-13T10:48:46.5647141Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bm.gif
2021-03-13T10:48:46.5648180Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bn.gif
2021-03-13T10:48:46.5649226Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bo.gif
2021-03-13T10:48:46.5650261Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_br.gif
2021-03-13T10:48:46.5651276Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bs.gif
2021-03-13T10:48:46.5652313Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bt.gif
2021-03-13T10:48:46.5653352Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bv.gif
2021-03-13T10:48:46.5654371Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bw.gif
2021-03-13T10:48:46.5655416Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bx.gif
2021-03-13T10:48:46.5656451Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_by.gif
2021-03-13T10:48:46.5657466Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_bz.gif
2021-03-13T10:48:46.5658829Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ca.gif
2021-03-13T10:48:46.5659877Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cc.gif
2021-03-13T10:48:46.5660907Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cd.gif
2021-03-13T10:48:46.5661919Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cf.gif
2021-03-13T10:48:46.5662950Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cg.gif
2021-03-13T10:48:46.5663988Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ch.gif
2021-03-13T10:48:46.5665450Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ci.gif
2021-03-13T10:48:46.5667331Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ck.gif
2021-03-13T10:48:46.5668407Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cl.gif
2021-03-13T10:48:46.5669425Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cm.gif
2021-03-13T10:48:46.5670655Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cn.gif
2021-03-13T10:48:46.5671931Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_co.gif
2021-03-13T10:48:46.5673024Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cr.gif
2021-03-13T10:48:46.5674061Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cs.gif
2021-03-13T10:48:46.5675098Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cu.gif
2021-03-13T10:48:46.5676123Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cv.gif
2021-03-13T10:48:46.5677133Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cx.gif
2021-03-13T10:48:46.5678359Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cy.gif
2021-03-13T10:48:46.5679488Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_cz.gif
2021-03-13T10:48:46.5680500Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_de.gif
2021-03-13T10:48:46.5681556Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_dj.gif
2021-03-13T10:48:46.5682580Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_dk.gif
2021-03-13T10:48:46.5683588Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_dm.gif
2021-03-13T10:48:46.5684620Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_do.gif
2021-03-13T10:48:46.5685648Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_dz.gif
2021-03-13T10:48:46.5686674Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ec.gif
2021-03-13T10:48:46.5687699Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ee.gif
2021-03-13T10:48:46.5688734Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_eg.gif
2021-03-13T10:48:46.5689766Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_eh.gif
2021-03-13T10:48:46.5690792Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_er.gif
2021-03-13T10:48:46.5691819Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_es.gif
2021-03-13T10:48:46.5692845Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_et.gif
2021-03-13T10:48:46.5693856Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_eu.gif
2021-03-13T10:48:46.5694889Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fi.gif
2021-03-13T10:48:46.5695910Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fj.gif
2021-03-13T10:48:46.5696911Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fk.gif
2021-03-13T10:48:46.5697950Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fm.gif
2021-03-13T10:48:46.5698980Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fo.gif
2021-03-13T10:48:46.5700008Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fr.gif
2021-03-13T10:48:46.5701220Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_fx.gif
2021-03-13T10:48:46.5702248Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ga.gif
2021-03-13T10:48:46.5703268Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gb.gif
2021-03-13T10:48:46.5704270Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gd.gif
2021-03-13T10:48:46.5705300Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ge.gif
2021-03-13T10:48:46.5706320Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gf.gif
2021-03-13T10:48:46.5707318Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gg.gif
2021-03-13T10:48:46.5708360Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gh.gif
2021-03-13T10:48:46.5709389Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gi.gif
2021-03-13T10:48:46.5710396Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gl.gif
2021-03-13T10:48:46.5711433Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gm.gif
2021-03-13T10:48:46.5712746Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gn.gif
2021-03-13T10:48:46.5713782Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gp.gif
2021-03-13T10:48:46.5714792Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gq.gif
2021-03-13T10:48:46.5715816Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gr.gif
2021-03-13T10:48:46.5716836Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gs.gif
2021-03-13T10:48:46.5717847Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gt.gif
2021-03-13T10:48:46.5719014Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gu.gif
2021-03-13T10:48:46.5720125Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gw.gif
2021-03-13T10:48:46.5721134Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_gy.gif
2021-03-13T10:48:46.5722181Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_hk.gif
2021-03-13T10:48:46.5723209Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_hm.gif
2021-03-13T10:48:46.5724232Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_hn.gif
2021-03-13T10:48:46.5725234Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_hr.gif
2021-03-13T10:48:46.5726254Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ht.gif
2021-03-13T10:48:46.5727271Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_hu.gif
2021-03-13T10:48:46.5728286Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_id.gif
2021-03-13T10:48:46.5729322Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ie.gif
2021-03-13T10:48:46.5730343Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_il.gif
2021-03-13T10:48:46.5731359Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_im.gif
2021-03-13T10:48:46.5732388Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_in.gif
2021-03-13T10:48:46.5733406Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_io.gif
2021-03-13T10:48:46.5734410Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_iq.gif
2021-03-13T10:48:46.5735430Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ir.gif
2021-03-13T10:48:46.5736456Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_is.gif
2021-03-13T10:48:46.5737481Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_it.gif
2021-03-13T10:48:46.5738505Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_je.gif
2021-03-13T10:48:46.5739543Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_jm.gif
2021-03-13T10:48:46.5740559Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_jo.gif
2021-03-13T10:48:46.5741750Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_jp.gif
2021-03-13T10:48:46.5742786Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ke.gif
2021-03-13T10:48:46.5743807Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kg.gif
2021-03-13T10:48:46.5744815Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kh.gif
2021-03-13T10:48:46.5745839Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ki.gif
2021-03-13T10:48:46.5746865Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_km.gif
2021-03-13T10:48:46.5747870Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kn.gif
2021-03-13T10:48:46.5748907Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kp.gif
2021-03-13T10:48:46.5749942Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kr.gif
2021-03-13T10:48:46.5750967Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kw.gif
2021-03-13T10:48:46.5752198Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ky.gif
2021-03-13T10:48:46.5753990Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_kz.gif
2021-03-13T10:48:46.5755066Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_la.gif
2021-03-13T10:48:46.5756072Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lb.gif
2021-03-13T10:48:46.5757099Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lc.gif
2021-03-13T10:48:46.5758125Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_le.gif
2021-03-13T10:48:46.5759138Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_li.gif
2021-03-13T10:48:46.5760359Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lk.gif
2021-03-13T10:48:46.5761496Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lr.gif
2021-03-13T10:48:46.5762526Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ls.gif
2021-03-13T10:48:46.5763558Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lt.gif
2021-03-13T10:48:46.5764590Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lu.gif
2021-03-13T10:48:46.5765613Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_lv.gif
2021-03-13T10:48:46.5766621Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ly.gif
2021-03-13T10:48:46.5767645Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ma.gif
2021-03-13T10:48:46.5768845Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mc.gif
2021-03-13T10:48:46.5769864Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_md.gif
2021-03-13T10:48:46.5770896Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_me.gif
2021-03-13T10:48:46.5771917Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mf.gif
2021-03-13T10:48:46.5772934Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mg.gif
2021-03-13T10:48:46.5773959Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mh.gif
2021-03-13T10:48:46.5774977Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mk.gif
2021-03-13T10:48:46.5776000Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ml.gif
2021-03-13T10:48:46.5777002Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mm.gif
2021-03-13T10:48:46.5778033Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mn.gif
2021-03-13T10:48:46.5779059Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mo.gif
2021-03-13T10:48:46.5780075Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mp.gif
2021-03-13T10:48:46.5781113Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mq.gif
2021-03-13T10:48:46.5782139Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mr.gif
2021-03-13T10:48:46.5783346Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ms.gif
2021-03-13T10:48:46.5784389Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mt.gif
2021-03-13T10:48:46.5785410Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mu.gif
2021-03-13T10:48:46.5786412Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mv.gif
2021-03-13T10:48:46.5787439Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mw.gif
2021-03-13T10:48:46.5788461Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mx.gif
2021-03-13T10:48:46.5789496Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_my.gif
2021-03-13T10:48:46.5790568Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_mz.gif
2021-03-13T10:48:46.5791854Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_na.gif
2021-03-13T10:48:46.5792981Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_nc.gif
2021-03-13T10:48:46.5794014Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ne.gif
2021-03-13T10:48:46.5795042Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_nf.gif
2021-03-13T10:48:46.5796061Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ng.gif
2021-03-13T10:48:46.5797065Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ni.gif
2021-03-13T10:48:46.5798085Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_nl.gif
2021-03-13T10:48:46.5799109Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_no.gif
2021-03-13T10:48:46.5800128Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_np.gif
2021-03-13T10:48:46.5801268Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_nr.gif
2021-03-13T10:48:46.5802361Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_nu.gif
2021-03-13T10:48:46.5803389Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_nz.gif
2021-03-13T10:48:46.5804410Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_o1.gif
2021-03-13T10:48:46.5805426Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_om.gif
2021-03-13T10:48:46.5806452Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pa.gif
2021-03-13T10:48:46.5807459Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pe.gif
2021-03-13T10:48:46.5808493Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pf.gif
2021-03-13T10:48:46.5809617Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pg.gif
2021-03-13T10:48:46.5810632Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ph.gif
2021-03-13T10:48:46.5811662Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pk.gif
2021-03-13T10:48:46.5812686Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pl.gif
2021-03-13T10:48:46.5813911Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pm.gif
2021-03-13T10:48:46.5814923Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pn.gif
2021-03-13T10:48:46.5815950Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pr.gif
2021-03-13T10:48:46.5816977Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ps.gif
2021-03-13T10:48:46.5817991Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pt.gif
2021-03-13T10:48:46.5819019Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_pw.gif
2021-03-13T10:48:46.5820044Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_py.gif
2021-03-13T10:48:46.5821054Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_qa.gif
2021-03-13T10:48:46.5822081Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_re.gif
2021-03-13T10:48:46.5823108Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ro.gif
2021-03-13T10:48:46.5824150Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_rs.gif
2021-03-13T10:48:46.5825159Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ru.gif
2021-03-13T10:48:46.5826178Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_rw.gif
2021-03-13T10:48:46.5827196Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sa.gif
2021-03-13T10:48:46.5828200Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sb.gif
2021-03-13T10:48:46.5829226Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sc.gif
2021-03-13T10:48:46.5830243Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sd.gif
2021-03-13T10:48:46.5831357Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_se.gif
2021-03-13T10:48:46.5832699Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sg.gif
2021-03-13T10:48:46.5833734Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sh.gif
2021-03-13T10:48:46.5834755Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_si.gif
2021-03-13T10:48:46.5835782Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sj.gif
2021-03-13T10:48:46.5836799Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sk.gif
2021-03-13T10:48:46.5838077Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sl.gif
2021-03-13T10:48:46.5839087Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sm.gif
2021-03-13T10:48:46.5840111Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sn.gif
2021-03-13T10:48:46.5841127Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_so.gif
2021-03-13T10:48:46.5842142Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sr.gif
2021-03-13T10:48:46.5843180Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_st.gif
2021-03-13T10:48:46.5844197Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_su.gif
2021-03-13T10:48:46.5845214Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sv.gif
2021-03-13T10:48:46.5846241Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sy.gif
2021-03-13T10:48:46.5847257Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_sz.gif
2021-03-13T10:48:46.5848264Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tc.gif
2021-03-13T10:48:46.5849286Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_td.gif
2021-03-13T10:48:46.5850308Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tf.gif
2021-03-13T10:48:46.5851337Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tg.gif
2021-03-13T10:48:46.5852345Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_th.gif
2021-03-13T10:48:46.5853368Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tj.gif
2021-03-13T10:48:46.5854602Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tk.gif
2021-03-13T10:48:46.5855609Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tl.gif
2021-03-13T10:48:46.5856634Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tm.gif
2021-03-13T10:48:46.5857660Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tn.gif
2021-03-13T10:48:46.5858668Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_to.gif
2021-03-13T10:48:46.5859695Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tp.gif
2021-03-13T10:48:46.5860715Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tr.gif
2021-03-13T10:48:46.5861751Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tt.gif
2021-03-13T10:48:46.5862765Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tv.gif
2021-03-13T10:48:46.5863789Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tw.gif
2021-03-13T10:48:46.5864828Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_tz.gif
2021-03-13T10:48:46.5865834Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ua.gif
2021-03-13T10:48:46.5866852Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ug.gif
2021-03-13T10:48:46.5868049Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_uk.gif
2021-03-13T10:48:46.5869055Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_um.gif
2021-03-13T10:48:46.5870077Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_us.gif
2021-03-13T10:48:46.5871092Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_uy.gif
2021-03-13T10:48:46.5872495Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_uz.gif
2021-03-13T10:48:46.5873606Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_va.gif
2021-03-13T10:48:46.5874629Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_vc.gif
2021-03-13T10:48:46.5875669Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ve.gif
2021-03-13T10:48:46.5876671Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_vg.gif
2021-03-13T10:48:46.5877695Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_vi.gif
2021-03-13T10:48:46.5878714Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_vn.gif
2021-03-13T10:48:46.5879716Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_vu.gif
2021-03-13T10:48:46.5880738Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_wf.gif
2021-03-13T10:48:46.5881759Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ws.gif
2021-03-13T10:48:46.5882773Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_ye.gif
2021-03-13T10:48:46.5883798Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_yt.gif
2021-03-13T10:48:46.5884819Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_yu.gif
2021-03-13T10:48:46.5885831Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_za.gif
2021-03-13T10:48:46.5886850Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_zm.gif
2021-03-13T10:48:46.5887872Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_zr.gif
2021-03-13T10:48:46.5888891Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_zw.gif
2021-03-13T10:48:46.5889890Z βš–οΈ  File content is the same, doing nothing: includes/geo/flags/flag_zz.gif
2021-03-13T10:48:46.5891009Z βš–οΈ  File content is the same, doing nothing: includes/geo/GeoLite2-Country.mmdb
2021-03-13T10:48:46.5891991Z πŸ—‘οΈ  Delete: includes/geo/README.md    
2021-03-13T10:48:46.5892921Z βš–οΈ  File content is the same, doing nothing: includes/load-yourls.php
2021-03-13T10:48:46.5893884Z πŸ—‘οΈ  Delete: includes/vendor/aura/sql/README.md    
2021-03-13T10:48:46.5895041Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/AbstractExtendedPdo.php
2021-03-13T10:48:46.5896606Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/ConnectionLocator.php
2021-03-13T10:48:46.5898117Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/ConnectionLocatorInterface.php
2021-03-13T10:48:46.5899543Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/DecoratedPdo.php
2021-03-13T10:48:46.5900759Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception.php
2021-03-13T10:48:46.5902050Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception/CannotBindValue.php
2021-03-13T10:48:46.5903477Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception/CannotDisconnect.php
2021-03-13T10:48:46.5904995Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception/ConnectionNotFound.php
2021-03-13T10:48:46.5906461Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Exception/MissingParameter.php
2021-03-13T10:48:46.5907800Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/ExtendedPdo.php
2021-03-13T10:48:46.5909506Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/ExtendedPdoInterface.php
2021-03-13T10:48:46.5911102Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/AbstractParser.php
2021-03-13T10:48:46.5912671Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/MysqlParser.php
2021-03-13T10:48:46.5913954Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/NullParser.php
2021-03-13T10:48:46.5915448Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/ParserInterface.php
2021-03-13T10:48:46.5916853Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/PgsqlParser.php
2021-03-13T10:48:46.5918164Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/SqliteParser.php
2021-03-13T10:48:46.5920296Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Parser/SqlsrvParser.php
2021-03-13T10:48:46.5921594Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/PdoInterface.php
2021-03-13T10:48:46.5922871Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Profiler/MemoryLogger.php
2021-03-13T10:48:46.5924167Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Profiler/Profiler.php
2021-03-13T10:48:46.5925525Z βš–οΈ  File content is the same, doing nothing: includes/vendor/aura/sql/src/Profiler/ProfilerInterface.php
2021-03-13T10:48:46.5926755Z βš–οΈ  File content is the same, doing nothing: includes/vendor/autoload.php
2021-03-13T10:48:46.5927952Z βš–οΈ  File content is the same, doing nothing: includes/vendor/build-script/yourls-build.sh
2021-03-13T10:48:46.5929216Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/autoload_classmap.php
2021-03-13T10:48:46.5930464Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/autoload_files.php
2021-03-13T10:48:46.5931690Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/autoload_namespaces.php
2021-03-13T10:48:46.5932916Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/autoload_psr4.php
2021-03-13T10:48:46.5934101Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/autoload_real.php
2021-03-13T10:48:46.5935278Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/autoload_static.php
2021-03-13T10:48:46.5936367Z πŸ—‘οΈ  Delete: includes/vendor/composer/ca-bundle/LICENSE    
2021-03-13T10:48:46.5937555Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/ca-bundle/phpstan.neon.dist
2021-03-13T10:48:46.5938697Z πŸ—‘οΈ  Delete: includes/vendor/composer/ca-bundle/README.md    
2021-03-13T10:48:46.5939839Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/ca-bundle/res/cacert.pem
2021-03-13T10:48:46.5941416Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/ca-bundle/src/CaBundle.php
2021-03-13T10:48:46.5942674Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/ClassLoader.php
2021-03-13T10:48:46.5943863Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/installed.json
2021-03-13T10:48:46.5945048Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/installed.php
2021-03-13T10:48:46.5946321Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/InstalledVersions.php
2021-03-13T10:48:46.5947407Z πŸ—‘οΈ  Delete: includes/vendor/composer/LICENSE    
2021-03-13T10:48:46.5948463Z βš–οΈ  File content is the same, doing nothing: includes/vendor/composer/platform_check.php
2021-03-13T10:48:46.5949536Z πŸ—‘οΈ  Delete: includes/vendor/geoip2/geoip2/README.md    
2021-03-13T10:48:46.5950653Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Database/Reader.php
2021-03-13T10:48:46.5952386Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/AddressNotFoundException.php
2021-03-13T10:48:46.5954154Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/AuthenticationException.php
2021-03-13T10:48:46.5955730Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/GeoIp2Exception.php
2021-03-13T10:48:46.5957162Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/HttpException.php
2021-03-13T10:48:46.5958732Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/InvalidRequestException.php
2021-03-13T10:48:46.5960529Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Exception/OutOfQueriesException.php
2021-03-13T10:48:46.5962082Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/AbstractModel.php
2021-03-13T10:48:46.5963439Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/AnonymousIp.php
2021-03-13T10:48:46.5964712Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Asn.php
2021-03-13T10:48:46.5965913Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/City.php
2021-03-13T10:48:46.5967213Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/ConnectionType.php
2021-03-13T10:48:46.5968531Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Country.php
2021-03-13T10:48:46.5969955Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Domain.php
2021-03-13T10:48:46.5971226Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Enterprise.php
2021-03-13T10:48:46.5972527Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Insights.php
2021-03-13T10:48:46.5973759Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Model/Isp.php
2021-03-13T10:48:46.5975089Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/ProviderInterface.php
2021-03-13T10:48:46.5976551Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/AbstractPlaceRecord.php
2021-03-13T10:48:46.5978019Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/AbstractRecord.php
2021-03-13T10:48:46.5979322Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/City.php
2021-03-13T10:48:46.5980571Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Continent.php
2021-03-13T10:48:46.5981863Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Country.php
2021-03-13T10:48:46.5983137Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Location.php
2021-03-13T10:48:46.5984404Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/MaxMind.php
2021-03-13T10:48:46.5985832Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Postal.php
2021-03-13T10:48:46.5987222Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/RepresentedCountry.php
2021-03-13T10:48:46.5988637Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Subdivision.php
2021-03-13T10:48:46.5989907Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Record/Traits.php
2021-03-13T10:48:46.5991100Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/Util.php
2021-03-13T10:48:46.5992581Z βš–οΈ  File content is the same, doing nothing: includes/vendor/geoip2/geoip2/src/WebService/Client.php
2021-03-13T10:48:46.5993922Z βš–οΈ  File content is the same, doing nothing: includes/vendor/jakeasmith/http_build_url/src/http_build_url.php
2021-03-13T10:48:46.5995041Z πŸ—‘οΈ  Delete: includes/vendor/maxmind-db/reader/README.md    
2021-03-13T10:48:46.5996243Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader.php
2021-03-13T10:48:46.5997622Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Decoder.php
2021-03-13T10:48:46.5999238Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/InvalidDatabaseException.php
2021-03-13T10:48:46.6000854Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Metadata.php
2021-03-13T10:48:46.6002341Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind-db/reader/src/MaxMind/Db/Reader/Util.php
2021-03-13T10:48:46.6003730Z πŸ—‘οΈ  Delete: includes/vendor/maxmind/web-service-common/README.md    
2021-03-13T10:48:46.6005320Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/AuthenticationException.php
2021-03-13T10:48:46.6007098Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/HttpException.php
2021-03-13T10:48:46.6008917Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/InsufficientFundsException.php
2021-03-13T10:48:46.6010827Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/InvalidInputException.php
2021-03-13T10:48:46.6012667Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/InvalidRequestException.php
2021-03-13T10:48:46.6014608Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/IpAddressNotFoundException.php
2021-03-13T10:48:46.6016626Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/PermissionRequiredException.php
2021-03-13T10:48:46.6018506Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/Exception/WebServiceException.php
2021-03-13T10:48:46.6020168Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/WebService/Client.php
2021-03-13T10:48:46.6021752Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/WebService/Http/CurlRequest.php
2021-03-13T10:48:46.6023371Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/WebService/Http/Request.php
2021-03-13T10:48:46.6025001Z βš–οΈ  File content is the same, doing nothing: includes/vendor/maxmind/web-service-common/src/WebService/Http/RequestFactory.php
2021-03-13T10:48:46.6026340Z πŸ—‘οΈ  Delete: includes/vendor/ozh/bookmarkletgen/README.md    
2021-03-13T10:48:46.6027701Z βš–οΈ  File content is the same, doing nothing: includes/vendor/ozh/bookmarkletgen/src/Ozh/Bookmarkletgen/Bookmarkletgen.php
2021-03-13T10:48:46.6028944Z πŸ—‘οΈ  Delete: includes/vendor/ozh/phpass/README.md    
2021-03-13T10:48:46.6030263Z βš–οΈ  File content is the same, doing nothing: includes/vendor/ozh/phpass/src/Ozh/Phpass/PasswordHash.php
2021-03-13T10:48:46.6031368Z πŸ—‘οΈ  Delete: includes/vendor/pomo/pomo/README.md    
2021-03-13T10:48:46.6032595Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/MO.php
2021-03-13T10:48:46.6033792Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Parser/PluralForms.php
2021-03-13T10:48:46.6034984Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/PO.php
2021-03-13T10:48:46.6036260Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/CachedFileReader.php
2021-03-13T10:48:46.6037721Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/CachedIntFileReader.php
2021-03-13T10:48:46.6039132Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/FileReader.php
2021-03-13T10:48:46.6040429Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/NOOPReader.php
2021-03-13T10:48:46.6041718Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/Reader.php
2021-03-13T10:48:46.6043010Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/StreamInterface.php
2021-03-13T10:48:46.6044367Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Streams/StringReader.php
2021-03-13T10:48:46.6045785Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/EntryTranslations.php
2021-03-13T10:48:46.6047301Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/GettextTranslations.php
2021-03-13T10:48:46.6048950Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/NOOPTranslations.php
2021-03-13T10:48:46.6050445Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/Translations.php
2021-03-13T10:48:46.6051939Z βš–οΈ  File content is the same, doing nothing: includes/vendor/pomo/pomo/src/Translations/TranslationsInterface.php
2021-03-13T10:48:46.6053395Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/AbstractLogger.php
2021-03-13T10:48:46.6054839Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/InvalidArgumentException.php
2021-03-13T10:48:46.6056345Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LoggerAwareInterface.php
2021-03-13T10:48:46.6057735Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LoggerAwareTrait.php
2021-03-13T10:48:46.6059073Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LoggerInterface.php
2021-03-13T10:48:46.6060361Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LoggerTrait.php
2021-03-13T10:48:46.6061584Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/LogLevel.php
2021-03-13T10:48:46.6062775Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/NullLogger.php
2021-03-13T10:48:46.6064020Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/Test/DummyTest.php
2021-03-13T10:48:46.6065906Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php
2021-03-13T10:48:46.6067443Z βš–οΈ  File content is the same, doing nothing: includes/vendor/psr/log/Psr/Log/Test/TestLogger.php
2021-03-13T10:48:46.6068501Z πŸ—‘οΈ  Delete: includes/vendor/psr/log/README.md    
2021-03-13T10:48:46.6069600Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests.php
2021-03-13T10:48:46.6070899Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Auth.php
2021-03-13T10:48:46.6072665Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Auth/Basic.php
2021-03-13T10:48:46.6074032Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Cookie.php
2021-03-13T10:48:46.6075646Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Cookie/Jar.php
2021-03-13T10:48:46.6077005Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception.php
2021-03-13T10:48:46.6078418Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP.php
2021-03-13T10:48:46.6079833Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/304.php
2021-03-13T10:48:46.6081249Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/305.php
2021-03-13T10:48:46.6082662Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/306.php
2021-03-13T10:48:46.6084070Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/400.php
2021-03-13T10:48:46.6085497Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/401.php
2021-03-13T10:48:46.6086896Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/402.php
2021-03-13T10:48:46.6088303Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/403.php
2021-03-13T10:48:46.6089708Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/404.php
2021-03-13T10:48:46.6091114Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/405.php
2021-03-13T10:48:46.6092614Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/406.php
2021-03-13T10:48:46.6094089Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/407.php
2021-03-13T10:48:46.6095516Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/408.php
2021-03-13T10:48:46.6096899Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/409.php
2021-03-13T10:48:46.6098307Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/410.php
2021-03-13T10:48:46.6099803Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/411.php
2021-03-13T10:48:46.6101213Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/412.php
2021-03-13T10:48:46.6102612Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/413.php
2021-03-13T10:48:46.6104021Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/414.php
2021-03-13T10:48:46.6105446Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/415.php
2021-03-13T10:48:46.6106850Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/416.php
2021-03-13T10:48:46.6108241Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/417.php
2021-03-13T10:48:46.6109642Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/418.php
2021-03-13T10:48:46.6111046Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/428.php
2021-03-13T10:48:46.6112649Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/429.php
2021-03-13T10:48:46.6114071Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/431.php
2021-03-13T10:48:46.6115682Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/500.php
2021-03-13T10:48:46.6117090Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/501.php
2021-03-13T10:48:46.6118479Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/502.php
2021-03-13T10:48:46.6119881Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/503.php
2021-03-13T10:48:46.6121292Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/504.php
2021-03-13T10:48:46.6122795Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/505.php
2021-03-13T10:48:46.6124243Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/511.php
2021-03-13T10:48:46.6125713Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/HTTP/Unknown.php
2021-03-13T10:48:46.6127202Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/Transport.php
2021-03-13T10:48:46.6128677Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Exception/Transport/cURL.php
2021-03-13T10:48:46.6130098Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Hooker.php
2021-03-13T10:48:46.6131425Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Hooks.php
2021-03-13T10:48:46.6132811Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/IDNAEncoder.php
2021-03-13T10:48:46.6134165Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/IPv6.php
2021-03-13T10:48:46.6135480Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/IRI.php
2021-03-13T10:48:46.6136797Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Proxy.php
2021-03-13T10:48:46.6138130Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Proxy/HTTP.php
2021-03-13T10:48:46.6140039Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Response.php
2021-03-13T10:48:46.6141476Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Response/Headers.php
2021-03-13T10:48:46.6142883Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Session.php
2021-03-13T10:48:46.6144203Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/SSL.php
2021-03-13T10:48:46.6145546Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Transport.php
2021-03-13T10:48:46.6147169Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Transport/cacert.pem
2021-03-13T10:48:46.6148575Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Transport/cURL.php
2021-03-13T10:48:46.6150015Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Transport/fsockopen.php
2021-03-13T10:48:46.6151857Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Utility/CaseInsensitiveDictionary.php
2021-03-13T10:48:46.6153645Z βš–οΈ  File content is the same, doing nothing: includes/vendor/rmccue/requests/library/Requests/Utility/FilteredIterator.php
2021-03-13T10:48:46.6154894Z πŸ—‘οΈ  Delete: includes/vendor/rmccue/requests/README.md    
2021-03-13T10:48:46.6155890Z πŸ—‘οΈ  Delete: includes/vendor/spatie/array-to-xml/README.md    
2021-03-13T10:48:46.6157083Z βš–οΈ  File content is the same, doing nothing: includes/vendor/spatie/array-to-xml/src/ArrayToXml.php
2021-03-13T10:48:46.6158459Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/bootstrap.php
2021-03-13T10:48:46.6159885Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/bootstrap80.php
2021-03-13T10:48:46.6161251Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Idn.php
2021-03-13T10:48:46.6162568Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Info.php
2021-03-13T10:48:46.6163746Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-intl-idn/LICENSE    
2021-03-13T10:48:46.6164851Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-intl-idn/README.md    
2021-03-13T10:48:46.6166361Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/deviation.php
2021-03-13T10:48:46.6168043Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_mapped.php
2021-03-13T10:48:46.6169744Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed_STD3_valid.php
2021-03-13T10:48:46.6171362Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/disallowed.php
2021-03-13T10:48:46.6173011Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/DisallowedRanges.php
2021-03-13T10:48:46.6174799Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/ignored.php
2021-03-13T10:48:46.6176346Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/mapped.php
2021-03-13T10:48:46.6177867Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/Regex.php
2021-03-13T10:48:46.6179381Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-idn/Resources/unidata/virama.php
2021-03-13T10:48:46.6180915Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/bootstrap.php
2021-03-13T10:48:46.6182502Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php
2021-03-13T10:48:46.6183914Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-intl-normalizer/LICENSE    
2021-03-13T10:48:46.6185332Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Normalizer.php
2021-03-13T10:48:46.6186745Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-intl-normalizer/README.md    
2021-03-13T10:48:46.6188282Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/stubs/Normalizer.php
2021-03-13T10:48:46.6190146Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalComposition.php
2021-03-13T10:48:46.6192458Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/canonicalDecomposition.php
2021-03-13T10:48:46.6194430Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/combiningClass.php
2021-03-13T10:48:46.6196478Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-intl-normalizer/Resources/unidata/compatibilityDecomposition.php
2021-03-13T10:48:46.6198257Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/bootstrap.php
2021-03-13T10:48:46.6199502Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-mbstring/LICENSE    
2021-03-13T10:48:46.6200767Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/Mbstring.php
2021-03-13T10:48:46.6202009Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-mbstring/README.md    
2021-03-13T10:48:46.6203361Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/Resources/unidata/lowerCase.php
2021-03-13T10:48:46.6205020Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/Resources/unidata/titleCaseRegexp.php
2021-03-13T10:48:46.6206655Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-mbstring/Resources/unidata/upperCase.php
2021-03-13T10:48:46.6208101Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-php72/bootstrap.php
2021-03-13T10:48:46.6209290Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-php72/LICENSE    
2021-03-13T10:48:46.6210473Z βš–οΈ  File content is the same, doing nothing: includes/vendor/symfony/polyfill-php72/Php72.php
2021-03-13T10:48:46.6211766Z πŸ—‘οΈ  Delete: includes/vendor/symfony/polyfill-php72/README.md    
2021-03-13T10:48:46.6212734Z πŸ” File replace: includes/version.php
2021-03-13T10:48:46.6213650Z βš–οΈ  File content is the same, doing nothing: js/clipboard.min.js
2021-03-13T10:48:46.6214590Z βš–οΈ  File content is the same, doing nothing: js/common.js
2021-03-13T10:48:46.6215474Z βš–οΈ  File content is the same, doing nothing: js/infos.js
2021-03-13T10:48:46.6216355Z βš–οΈ  File content is the same, doing nothing: js/insert.js
2021-03-13T10:48:46.6217306Z βš–οΈ  File content is the same, doing nothing: js/jquery-3.5.1.min.js
2021-03-13T10:48:46.6218409Z βš–οΈ  File content is the same, doing nothing: js/jquery-3.tablesorter.min.js
2021-03-13T10:48:46.6219488Z βš–οΈ  File content is the same, doing nothing: js/jquery.cal.js
2021-03-13T10:48:46.6220492Z βš–οΈ  File content is the same, doing nothing: js/jquery.notifybar.js
2021-03-13T10:48:46.6221436Z βš–οΈ  File content is the same, doing nothing: js/share.js
2021-03-13T10:48:46.6222906Z βš–οΈ  File content is the same, doing nothing: js/tablesorte.js
2021-03-13T10:48:46.6223703Z πŸ—‘οΈ  Delete: LICENSE    
2021-03-13T10:48:46.6224331Z πŸ—‘οΈ  Delete: README.md    
2021-03-13T10:48:46.6225052Z πŸ—‘οΈ  Delete: sample-robots.txt    
2021-03-13T10:48:46.6225786Z πŸ—‘οΈ  Delete: tests/.htaccess    
2021-03-13T10:48:46.6226647Z βš–οΈ  File content is the same, doing nothing: tests/bootstrap.php
2021-03-13T10:48:46.6227747Z βš–οΈ  File content is the same, doing nothing: tests/data/auth/config-test-auth.php
2021-03-13T10:48:46.6229028Z βš–οΈ  File content is the same, doing nothing: tests/data/config/yourls-tests-config-ci.php
2021-03-13T10:48:46.6230433Z βš–οΈ  File content is the same, doing nothing: tests/data/config/yourls-tests-config-sample.php
2021-03-13T10:48:46.6231903Z βš–οΈ  File content is the same, doing nothing: tests/data/formatting/big5.txt
2021-03-13T10:48:46.6233042Z βš–οΈ  File content is the same, doing nothing: tests/data/formatting/utf-8.txt
2021-03-13T10:48:46.6234151Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/expected_empty.txt
2021-03-13T10:48:46.6235460Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/expected_fresh-YOURLS-content.txt
2021-03-13T10:48:46.6236751Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/expected_nofile.txt
2021-03-13T10:48:46.6238264Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/expected_old-YOURLS-content.txt
2021-03-13T10:48:46.6239571Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/expected_other-content.txt
2021-03-13T10:48:46.6240770Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/original_empty.txt
2021-03-13T10:48:46.6242046Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/original_fresh-YOURLS-content.txt
2021-03-13T10:48:46.6243425Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/original_old-YOURLS-content.txt
2021-03-13T10:48:46.6244709Z βš–οΈ  File content is the same, doing nothing: tests/data/htaccess/original_other-content.txt
2021-03-13T10:48:46.6245908Z βš–οΈ  File content is the same, doing nothing: tests/data/pages/examplepage.php
2021-03-13T10:48:46.6247116Z βš–οΈ  File content is the same, doing nothing: tests/data/plugins/headers/header_incomplete.php
2021-03-13T10:48:46.6248348Z βš–οΈ  File content is the same, doing nothing: tests/data/plugins/headers/header_incorrect.php
2021-03-13T10:48:46.6249581Z βš–οΈ  File content is the same, doing nothing: tests/data/plugins/headers/header_missing.php
2021-03-13T10:48:46.6250652Z βž• Upload: tests/data/plugins/headers/header_nocomment.php
2021-03-13T10:48:46.6251733Z βš–οΈ  File content is the same, doing nothing: tests/data/plugins/headers/header_phpdoc.php
2021-03-13T10:48:46.6252933Z βš–οΈ  File content is the same, doing nothing: tests/data/plugins/headers/header_regular.php
2021-03-13T10:48:46.6254117Z βš–οΈ  File content is the same, doing nothing: tests/data/plugins/test-plugin/plugin.php
2021-03-13T10:48:46.6255185Z βš–οΈ  File content is the same, doing nothing: tests/data/pomo/fr_FR.mo
2021-03-13T10:48:46.6256266Z βš–οΈ  File content is the same, doing nothing: tests/data/pomo/fr_FR.po
2021-03-13T10:48:46.6257329Z βš–οΈ  File content is the same, doing nothing: tests/data/pomo/test-fr_FR.mo
2021-03-13T10:48:46.6258353Z βš–οΈ  File content is the same, doing nothing: tests/data/pomo/test-fr_FR.po
2021-03-13T10:48:46.6259384Z βš–οΈ  File content is the same, doing nothing: tests/includes/install.php
2021-03-13T10:48:46.6260503Z βš–οΈ  File content is the same, doing nothing: tests/includes/phpunit6-compat.php
2021-03-13T10:48:46.6261593Z βš–οΈ  File content is the same, doing nothing: tests/includes/utils.php
2021-03-13T10:48:46.6262417Z πŸ—‘οΈ  Delete: tests/README.md    
2021-03-13T10:48:46.6263284Z βš–οΈ  File content is the same, doing nothing: tests/tests/api/funcs.php
2021-03-13T10:48:46.6264289Z βš–οΈ  File content is the same, doing nothing: tests/tests/api/output.php
2021-03-13T10:48:46.6265273Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/auth.php
2021-03-13T10:48:46.6266294Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/login_API.php
2021-03-13T10:48:46.6267344Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/login_base.php
2021-03-13T10:48:46.6268401Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/login_cookie.php
2021-03-13T10:48:46.6269447Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/login_normal.php
2021-03-13T10:48:46.6270542Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/login_secure_time.php
2021-03-13T10:48:46.6271983Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/login_secure.php
2021-03-13T10:48:46.6273079Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/logout.php
2021-03-13T10:48:46.6274101Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/nonces.php
2021-03-13T10:48:46.6275163Z βš–οΈ  File content is the same, doing nothing: tests/tests/auth/signatures.php
2021-03-13T10:48:46.6276157Z βš–οΈ  File content is the same, doing nothing: tests/tests/db/db.php
2021-03-13T10:48:46.6277119Z βš–οΈ  File content is the same, doing nothing: tests/tests/db/misc.php
2021-03-13T10:48:46.6278171Z βš–οΈ  File content is the same, doing nothing: tests/tests/format/escaping.php
2021-03-13T10:48:46.6279227Z βš–οΈ  File content is the same, doing nothing: tests/tests/format/general.php
2021-03-13T10:48:46.6280466Z βš–οΈ  File content is the same, doing nothing: tests/tests/format/kses.php
2021-03-13T10:48:46.6281532Z βš–οΈ  File content is the same, doing nothing: tests/tests/format/sanitizing.php
2021-03-13T10:48:46.6282633Z βš–οΈ  File content is the same, doing nothing: tests/tests/format/timedates.php
2021-03-13T10:48:46.6283668Z βš–οΈ  File content is the same, doing nothing: tests/tests/format/urls.php
2021-03-13T10:48:46.6284690Z βš–οΈ  File content is the same, doing nothing: tests/tests/geoip/geoip.php
2021-03-13T10:48:46.6285746Z βš–οΈ  File content is the same, doing nothing: tests/tests/http/api-check.php
2021-03-13T10:48:46.6286792Z βš–οΈ  File content is the same, doing nothing: tests/tests/http/general.php
2021-03-13T10:48:46.6287859Z βš–οΈ  File content is the same, doing nothing: tests/tests/http/headers.php
2021-03-13T10:48:46.6288885Z βš–οΈ  File content is the same, doing nothing: tests/tests/http/misc.php
2021-03-13T10:48:46.6289876Z βš–οΈ  File content is the same, doing nothing: tests/tests/http/proxy.php
2021-03-13T10:48:46.6290937Z βš–οΈ  File content is the same, doing nothing: tests/tests/http/requests.php
2021-03-13T10:48:46.6292010Z βš–οΈ  File content is the same, doing nothing: tests/tests/install/htaccess.php
2021-03-13T10:48:46.6293147Z βš–οΈ  File content is the same, doing nothing: tests/tests/install/install.php
2021-03-13T10:48:46.6294247Z βš–οΈ  File content is the same, doing nothing: tests/tests/install/version.php
2021-03-13T10:48:46.6295293Z βš–οΈ  File content is the same, doing nothing: tests/tests/l10n/domain.php
2021-03-13T10:48:46.6296317Z βš–οΈ  File content is the same, doing nothing: tests/tests/l10n/formats.php
2021-03-13T10:48:46.6297338Z βš–οΈ  File content is the same, doing nothing: tests/tests/l10n/general.php
2021-03-13T10:48:46.6298533Z βš–οΈ  File content is the same, doing nothing: tests/tests/l10n/translations.php
2021-03-13T10:48:46.6299686Z βš–οΈ  File content is the same, doing nothing: tests/tests/links/yourls_links.php
2021-03-13T10:48:46.6300701Z βš–οΈ  File content is the same, doing nothing: tests/tests/options.php
2021-03-13T10:48:46.6301739Z βš–οΈ  File content is the same, doing nothing: tests/tests/pages/pages.php
2021-03-13T10:48:46.6302791Z βš–οΈ  File content is the same, doing nothing: tests/tests/plugins/actions.php
2021-03-13T10:48:46.6303828Z βš–οΈ  File content is the same, doing nothing: tests/tests/plugins/files.php
2021-03-13T10:48:46.6304886Z βš–οΈ  File content is the same, doing nothing: tests/tests/plugins/filters.php
2021-03-13T10:48:46.6305854Z πŸ” File replace: tests/tests/plugins/headers.php
2021-03-13T10:48:46.6306690Z βž• Upload: tests/tests/plugins/helpers.php
2021-03-13T10:48:46.6307518Z πŸ—‘οΈ  Delete: tests/tests/plugins/misc.php    
2021-03-13T10:48:46.6308316Z βž• Upload: tests/tests/plugins/pages.php
2021-03-13T10:48:46.6309294Z βš–οΈ  File content is the same, doing nothing: tests/tests/shorturl/shorturl.php
2021-03-13T10:48:46.6310328Z βš–οΈ  File content is the same, doing nothing: tests/tests/stats/misc.php
2021-03-13T10:48:46.6311352Z βš–οΈ  File content is the same, doing nothing: tests/tests/themes/themes.php
2021-03-13T10:48:46.6312431Z πŸ—‘οΈ  Delete: tests/tests/TODO.md    
2021-03-13T10:48:46.6313375Z βš–οΈ  File content is the same, doing nothing: tests/tests/utilities/get_request.php
2021-03-13T10:48:46.6314511Z βš–οΈ  File content is the same, doing nothing: tests/tests/utilities/next_decimal.php
2021-03-13T10:48:46.6315487Z πŸ—‘οΈ  Delete: user/config-sample.php    
2021-03-13T10:48:46.6316366Z βš–οΈ  File content is the same, doing nothing: user/index.html
2021-03-13T10:48:46.6317155Z πŸ“  Delete: user/languages    
2021-03-13T10:48:46.6318345Z βš–οΈ  File content is the same, doing nothing: user/languages/index.html
2021-03-13T10:48:46.6319162Z πŸ“  Delete: user/pages    
2021-03-13T10:48:46.6320036Z βš–οΈ  File content is the same, doing nothing: user/pages/examplepage.php
2021-03-13T10:48:46.6321090Z βš–οΈ  File content is the same, doing nothing: user/pages/index.html
2021-03-13T10:48:46.6321893Z πŸ“  Delete: user/plugins    
2021-03-13T10:48:46.6322838Z βš–οΈ  File content is the same, doing nothing: user/plugins/hyphens-in-urls/plugin.php
2021-03-13T10:48:46.6324139Z πŸ—‘οΈ  Delete: user/plugins/hyphens-in-urls/README.md    
2021-03-13T10:48:46.6325128Z βš–οΈ  File content is the same, doing nothing: user/plugins/index.html
2021-03-13T10:48:46.6326178Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_ants.png
2021-03-13T10:48:46.6327292Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_boobs.png
2021-03-13T10:48:46.6328421Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_circles.png
2021-03-13T10:48:46.6329537Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_cross.png
2021-03-13T10:48:46.6330645Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_diag.png
2021-03-13T10:48:46.6331792Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_fuzzy_bits.png
2021-03-13T10:48:46.6332925Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_fuzzy.png
2021-03-13T10:48:46.6334043Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_life.png
2021-03-13T10:48:46.6335161Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/img/bg_yourls.png
2021-03-13T10:48:46.6336271Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-bg/plugin.php
2021-03-13T10:48:46.6337227Z πŸ—‘οΈ  Delete: user/plugins/random-bg/README.md    
2021-03-13T10:48:46.6338275Z βš–οΈ  File content is the same, doing nothing: user/plugins/random-shorturls/plugin.php
2021-03-13T10:48:46.6339359Z πŸ—‘οΈ  Delete: user/plugins/random-shorturls/README.md    
2021-03-13T10:48:46.6340415Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-page/plugin.php
2021-03-13T10:48:46.6341431Z πŸ—‘οΈ  Delete: user/plugins/sample-page/README.md    
2021-03-13T10:48:46.6342590Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-plugin/plugin.php
2021-03-13T10:48:46.6343675Z πŸ—‘οΈ  Delete: user/plugins/sample-plugin/README.md    
2021-03-13T10:48:46.6344770Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/css/toolbar.css
2021-03-13T10:48:46.6346036Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/img/close_button_red.gif
2021-03-13T10:48:46.6347289Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/img/close_button.gif
2021-03-13T10:48:46.6348497Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/img/favicon.gif
2021-03-13T10:48:46.6349714Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/img/toolbar_bg.png
2021-03-13T10:48:46.6350914Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/js/toolbar.js
2021-03-13T10:48:46.6352295Z βš–οΈ  File content is the same, doing nothing: user/plugins/sample-toolbar/plugin.php
2021-03-13T10:48:46.6353380Z πŸ—‘οΈ  Delete: user/plugins/sample-toolbar/README.md    
2021-03-13T10:48:46.6354332Z βš–οΈ  File content is the same, doing nothing: yourls-api.php
2021-03-13T10:48:46.6355262Z βš–οΈ  File content is the same, doing nothing: yourls-go.php
2021-03-13T10:48:46.6356242Z βš–οΈ  File content is the same, doing nothing: yourls-infos.php
2021-03-13T10:48:46.6357244Z βš–οΈ  File content is the same, doing nothing: yourls-loader.php
2021-03-13T10:48:46.6358160Z ----------------------------------------------------------------
2021-03-13T10:48:46.6358819Z Making changes to 50 files to sync server state
2021-03-13T10:48:46.6359687Z Uploading: 6.75 kB -- Deleting: 88.6 kB -- Replacing: 91.4 kB
2021-03-13T10:48:46.6360547Z ----------------------------------------------------------------
2021-03-13T10:48:46.6361298Z uploading "tests/data/plugins/headers/header_nocomment.php"
2021-03-13T10:48:46.8439861Z Error 553 FileNameNotAllowed, you don't have access to upload that file
2021-03-13T10:48:46.8465406Z FTPError: 553 Can't open that file: No such file or directory
2021-03-13T10:48:46.8466850Z     at FTPContext._onControlSocketData (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3759:39)
2021-03-13T10:48:46.8470826Z     at Socket.<anonymous> (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3600:44)
2021-03-13T10:48:46.8472328Z     at Socket.emit (events.js:210:5)
2021-03-13T10:48:46.8473051Z     at addChunk (_stream_readable.js:309:12)
2021-03-13T10:48:46.8473756Z     at readableAddChunk (_stream_readable.js:286:13)
2021-03-13T10:48:46.8474838Z     at Socket.Readable.push (_stream_readable.js:224:10)
2021-03-13T10:48:46.8479298Z     at TCP.onStreamRead (internal/stream_base_commons.js:182:23) {
2021-03-13T10:48:46.8481818Z   name: 'FTPError',
2021-03-13T10:48:46.8482306Z   code: 553
2021-03-13T10:48:46.8482646Z }
2021-03-13T10:48:46.8483511Z FTPError: 553 Can't open that file: No such file or directory
2021-03-13T10:48:46.8484882Z     at FTPContext._onControlSocketData (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3759:39)
2021-03-13T10:48:46.8486431Z     at Socket.<anonymous> (/home/runner/work/_actions/SamKirkland/FTP-Deploy-Action/4.0.0/dist/index.js:3600:44)
2021-03-13T10:48:46.8487334Z     at Socket.emit (events.js:210:5)
2021-03-13T10:48:46.8487945Z     at addChunk (_stream_readable.js:309:12)
2021-03-13T10:48:46.8488615Z     at readableAddChunk (_stream_readable.js:286:13)
2021-03-13T10:48:46.8489424Z     at Socket.Readable.push (_stream_readable.js:224:10)
2021-03-13T10:48:46.8490274Z     at TCP.onStreamRead (internal/stream_base_commons.js:182:23) {
2021-03-13T10:48:46.8491088Z   name: 'FTPError',
2021-03-13T10:48:46.8491532Z   code: 553
2021-03-13T10:48:46.8491891Z }
2021-03-13T10:48:46.8492678Z ----------------------------------------------------------------
2021-03-13T10:48:46.8493349Z Time spent hashing:               527 milliseconds
2021-03-13T10:48:46.8494249Z Time spent connecting to server:  910 milliseconds
2021-03-13T10:48:46.8495047Z Time spent deploying:             295 milliseconds (333 kB/second)
2021-03-13T10:48:46.8495971Z   - changing dirs:                190 milliseconds
2021-03-13T10:48:46.8496753Z   - logging:                      20 milliseconds
2021-03-13T10:48:46.8497600Z ----------------------------------------------------------------
2021-03-13T10:48:46.8498176Z Total time:                       2.5 seconds
2021-03-13T10:48:46.8500171Z ----------------------------------------------------------------
2021-03-13T10:48:46.8682784Z Post job cleanup.
2021-03-13T10:48:46.9953153Z [command]/usr/bin/git version
2021-03-13T10:48:47.0010739Z git version 2.30.1
2021-03-13T10:48:47.0056784Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2021-03-13T10:48:47.0091913Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :
2021-03-13T10:48:47.0346368Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2021-03-13T10:48:47.0381775Z http.https://github.com/.extraheader
2021-03-13T10:48:47.0383680Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2021-03-13T10:48:47.0412491Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :
2021-03-13T10:48:47.0709387Z Cleaning up orphan processes
xannasavin commented 3 years ago

Hey @SamKirkland any news on this? Your time is highly appreciated :)

estissy commented 3 years ago

Something similar here. obraz

DaanKorver commented 3 years ago

Got the same problem, for some reason it only does it with image files

mikedelgaudio commented 3 years ago

Have the same error with only a new file image

xannasavin commented 3 years ago

any news on this?

bbhxwl commented 2 years ago

Me too. It's SFTP protocol, version 3.1. Why?

OZZlE commented 2 years ago

We modified a svgs colors but the log only shows "File content is the same, doing nothing"

OZZlE commented 2 years ago

Would be good if there was a work-around for now to "Always upload files". We have uploaded CMS assets so I cannot use "dangerous-clean-slate" because I think that will remove them.

Perhaps some options of how files are compared also. Like modification date and/or a deeper comparison of file contents.

xannasavin commented 1 year ago

still no updates on this? lol, 2 years old thread...

Zediz commented 1 year ago

I got a similar issue, I was solved deleting, the content of ".ftp-deploy-sync-state.json" file. it is a hidden file, just

  1. open it
  2. clear all it has inside,
  3. save it
  4. and run the action again.
mahadhi78 commented 9 months ago

i got Deploy website FTPError: 552 Disk full - please upload later

how solve this and my disk is not full by the way